延迟执行当前脚本3秒(3000000微秒):
<?php
echo date('h:i:s') . "<br>";
//sleep for 3 seconds
usleep(3000000);
//start again
echo date('h:i:s');
?>
亲自试一试 »
usleep() 函数将当前脚本的执行延迟指定的微秒数(一微秒等于百万分之一秒)。
usleep(
microseconds)
Parameter | Description |
---|---|
microseconds | Required. Specifies the number of microseconds to delay the script |
返回值: | 没有返回值 |
---|---|
PHP 版本: | 4+ |
变更日志: | 该函数直到 PHP 5 才在 Windows 平台上运行 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!