1. 首页
  2. 编程语言
  3. PHP
  4. PHP sleep()函数, usleep()函数

PHP sleep()函数, usleep()函数

上传者: 2021-11-05 07:50:48上传 PDF文件 57.79 KB 热度 13次

若成功,返回 0,否则返回 false。如果指定的描述 seconds 是负数,该函数将生成一个 E_WARNING。例子输出:12:00:08 12:00:18定义和用法usleep() 函数延迟代码执行若干微秒。注释:在 PHP 5 之前,该函数无法工作于 Windows 系统上。If the call was interrupted by a signal, sleep() returns a non-zero value. On Windows, this value will always be 192 . On other platforms, the return value will be the number of seconds left to sleep.如果调用被信号中断,该函数返回一个非0值。在windows平台上,这个值总是192。其它平台返回值为sleep还没有执行的秒数。If the specified number of seconds is negative, this function will generate a E_WARNING.如果参数为负值,则函数生产一个警告错误.void usleep Delays program execution for the given number of micro seconds.usleep参数是微秒,且无返回值。

用户评论