It delays execution in microseconds
Example
<?php
echo date(‘h:i:s’) . “<br />”;
usleep(20000000);
echo date(‘h:i:s’);
?>
Output
06:02:42
06:03:02
It delays execution in microseconds
Example
<?php
echo date(‘h:i:s’) . “<br />”;
usleep(20000000);
echo date(‘h:i:s’);
?>
Output
06:02:42
06:03:02