It seed the random number generator
Example
<?php
srand(mktime());
echo(rand());
?>
Output
675098144
Example
<?php
srand(mktime());
echo(rand());
?>
Output
675098144
Example
<?php
echo sqrt(16);
?>
Output
4
Example
<?php
echo sinh(17.7);
?>
Output
24321050.753167
Example
<?php
echo sin(17.7);
?>
Output
-0.91258244979118
Example
<?php
echo round(17.7);
?>
Output
18
Example
<?php
echo rand();
?>
Output
648369316
Example
<?php
echo rad2deg(M_PI_4);
?>
Output
45
Example
<?php
echo pow(-1, 17);
?>
Output
-1
<?php
echo pi();
?>
Output
3.1415926535898
Example
<?php
echo octdec(11);
?>
Output
9