php until,time_sleep_until延迟php代码执行直到指定时间

if (!function_exists('time_sleep_until')) {

function time_sleep_until($future) {

if ($future 

trigger_error("Time in past", E_USER_WARNING);

return false;

}

sleep($future - time());

return true;

}

}

?>

//Implementation for 

if (!function_exists('time_sleep_until')) {

function time_sleep_until($future) {

if ($future 

trigger_error("Time in past", E_USER_WARNING);

return false;

}

usleep(($future - microtime(1))*1000000);

return true;

}

}

?>

//returns false and generates a warning

var_dump(time_sleep_until(time()-1));

// may only work on faster computers, will sleep up to 0.2 seconds

var_dump(time_sleep_until(time()+0.2));

?>

// +----------------------------------------------------------------------+

// | PHP Version 4                                                        |

// +----------------------------------------------------------------------+

// | Copyright (c) 1997-2004 The PHP Group                                |

// +----------------------------------------------------------------------+

// | This source file is subject to version 3.0 of the PHP license,       |

// | that is bundled with this package in the file LICENSE, and is        |

// | available at through the world-wide-web at                           |

// | http://www.php.net/license/3_0.txt.                                  |

// | If you did not receive a copy of the PHP license and are unable to   |

// | obtain it through the world-wide-web, please send a note to          |

// | license@php.net so we can mail you a copy immediately.               |

// +----------------------------------------------------------------------+

// | Authors: Arpad Ray                                    |

// +----------------------------------------------------------------------+

//

// $Id: time_sleep_until.php,v 1.2 2005/12/07 21:08:57 aidan Exp $

/**

* Replace time_sleep_until()

*

* @category    PHP

* @package     PHP_Compat

* @link        http://php.net/time_sleep_until

* @author      Arpad Ray 

* @version     $Revision: 1.2 $

* @since       PHP 5.1.0

* @require     PHP 4.0.1 (trigger_error)

*/

if (!function_exists('time_sleep_until')) {

function time_sleep_until($timestamp)

{

list($usec, $sec) = explode(' ', microtime());

$now = $sec + $usec;

if ($timestamp <= $now) {

user_error('Specified timestamp is in the past', E_USER_WARNING);

return false;

}

$diff = $timestamp - $now;

usleep($diff * 1000000);

return true;

}

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值