|
PHP5中文手册
sleep(PHP 4, PHP 5) sleep — Delay execution 说明
int sleep
( int $seconds
)
Delays the program execution for the given number of seconds . 参数
返回值Returns zero on success, or FALSE on errors. 错误/异常If the specified number of seconds is negative, this function will generate a E_WARNING. 范例
Example#1 sleep() example
<?php This example will output (after 10 seconds)
|