将当前脚本的执行延迟 2.5 秒:
<?php
if (time_nanosleep(2,500000000) === true)
{
echo "Slept for 2,5 seconds";
}
?>
亲自试一试 »
time_nanosleep() 函数将当前脚本的执行延迟指定的秒数和纳秒数。
time_nanosleep(
seconds,nanoseconds)
Parameter | Description |
---|---|
seconds | Required. Specifies the number of seconds to delay the script |
nanoseconds | Required. Specifies the number of nanoseconds to delay the script (must be less than 1,000,000,000) |
返回值: | 成功则返回 TRUE,失败则返回 FALSE。 如果调用被信号中断,则将返回一个关联数组,其中包含延迟中剩余的秒数或纳秒数。 |
---|---|
PHP 版本: | 5+ |
变更日志: | 该函数在 PHP 5.3.0 之前的 Windows 平台上不起作用 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!