It delays execution
Example
<?php
echo date(‘h:i:s’) . “<br />”;
sleep(10);
echo date(‘h:i:s’) . “<br />”;
?>
Output
05:38:00
05:38:10
It delays execution
Example
<?php
echo date(‘h:i:s’) . “<br />”;
sleep(10);
echo date(‘h:i:s’) . “<br />”;
?>
Output
05:38:00
05:38:10