|
PHP5中文手册
time_sleep_until(PHP 5 >= 5.1.0) time_sleep_until — Make the script sleep until the specified time 说明
bool time_sleep_until
( float $timestamp
)
Makes the script sleep until the specified timestamp . 参数
返回值如果成功则返回 TRUE,失败则返回 FALSE。 错误/异常If the specified timestamp is in the past, this function will generate a E_WARNING. 范例
Example#1 A time_sleep_until() example
<?php 注释
|