Warning: file_put_contents(): Only -1 of 44 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
show_source sys_getloadavg Misc. PHP Manual sleep (PHP 4, 5) — Delay execution Description int ( $seconds ) Delays the program for given number of seconds . Parameters Halt time in seconds. Retu...
Forum und email

sleep

(PHP 4, PHP 5)

sleep — Delay execution

Description

int sleep ( int $seconds )

Delays the program execution for the given number of seconds .

Parameters

seconds

Halt time in seconds.

Return Values

Returns zero on success, or FALSE on errors.

Errors/Exceptions

If the specified number of seconds is negative, this function will generate a E_WARNING.

Παραδείγματα

Example#1 sleep() example

<?php

// current time
echo date('h:i:s') . "\n";

// sleep for 10 seconds
sleep(10);

// wake up !
echo date('h:i:s') . "\n";

?>

This example will output (after 10 seconds)

05:31:23
05:31:33

Δείτε επίσης

usleep(), set_time_limit()