PHP sleep() May 23, 2012 Pramod T P 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