The PHP time_sleep_until() function is used to make a script sleep until the specified time.

				
					<?php
time_sleep_until(time()+3);
echo 'Hello World';
?>
				
			

Syntax

				
					time_sleep_until(timestamp)