It seed the better random number generator
Example
<?php
mt_srand(mktime());
echo(mt_rand());
?>
Output
254590754
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
<?php
echo log10(1);
?>
Output
0
Example
<?php
echo lcg_value();
?>
Output
0.91341065078248
Example
<?php
echo is_nan(acos(2.01));
?>
Output
1