Mega Code Archive

 
Categories / Php / Math
 

Calculation of e, the inverse nature of exp and log

<?php $e = exp(1); echo "$e\n"; $i = log($e); echo "$i\n"; ?>