It returns Exponential expression
Example
<?php
echo pow(-1, 17);
?>
Output
-1
Example
<?php
echo pow(-1, 17);
?>
Output
-1
<?php
echo pi();
?>
Output
3.1415926535898
Example
<?php
echo octdec(11);
?>
Output
9
Example
<?php
mt_srand(mktime());
echo(mt_rand());
?>
Output
254590754
Example
<?php
echo mt_rand(111,2222);
?>
Output
1787
Example
<?php
echo mt_getrandmax();
?>
Output
2147483647
Example
<?php
echo min(10,11,17)
?>
Output
10
Example
<?php
echo max(10,11,17)
?>
Output
17
Example
<?php
echo log(17)
?>
Output
2.8332133440562
Example
<?php
echo log1p(1)
?>
Output
0.69314718055995