当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP sleep( )用法及代码示例


PHP中的sleep()函数是一个内置函数,用于将当前脚本的执行延迟指定的秒数。 sleep()函数接受秒作为参数,成功则返回TRUE,失败则返回FALSE。

如果调用被信号中断,则sleep()函数将返回非零值。在Windows上,此值将始终为192,而在其他平台上,返回值将为剩余的睡眠秒数。

用法:


sleep($seconds)

使用的参数:PHP中的sleep()函数接受一个参数。

  • $seconds:这是一个强制性参数,用于指定秒数。

返回值:成功返回TRUE,失败返回FALSE。

错误与异常

  1. 如果调用被信号中断,则sleep()函数将返回非零值。
  2. 作为参数传递的秒数值应为非负值,否则此函数将生成E_WARNING。

以下示例程序旨在说明sleep()函数:

程序1:

<?php 
// displaying time 
echo date('h:i:s')."\n" ; 
   
// delaying execution of the script for 2 seconds 
sleep(2); 
   
// displaying time again 
echo date('h:i:s'); 
?>

输出:

06:53:48
06:53:50

程序2:

<?php 
// displaying time 
echo date('h:i:s')."\n" ; 
   
// using rand() function to randomly choose 
// a value and delay execution of the script 
sleep(rand(1, 5)); 
   
// displaying time again 
echo date('h:i:s'); 
  
?>

输出:

06:53:48
06:53:52

参考: http://php.net/manual/en/function.sleep.php



相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | sleep() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。