The PHP sleep() function delays execution of the current script for a specified number of seconds (only positive numbers are accepted).

				
					<?php
sleep(5);
?>
				
			

Syntax

				
					sleep(seconds)