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