目录

PHP usleep() 函数

❮ PHP 其他参考

示例

延迟执行当前脚本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 平台上运行

❮ PHP 其他参考