It returns Base-10 logarithm value
Example
<?php
echo log10(1);
?>
Output
0
<?php
echo log10(1);
?>
Output
0
Example
<?php
echo lcg_value();
?>
Output
0.91341065078248
Example
<?php
echo is_nan(acos(2.01));
?>
Output
1
Example
<?php
echo is_infinite(log(0));
?>
Output
1
Example
<?php
echo is_finite(2000);
?>
Output
1
Example
<?php
echo hypot(1,7);
?>
Output
7.0710678118655
Example
<?php
echo hexdec(17);
?>
Output
23
Example
<?php
echo getrandmax();
?>
Output
2147483647
Example
<?php
echo fmod(4,7);
?>
Output
4
Example
<?php
echo floor(1.7);
?>
Output
1