php 定义php代码运行时间

php 定义php代码运行时间
定义和用法
time_sleep_until() 函数延迟代码执行直到指定的时间。

语法
time_sleep_until(timestamp)

参数 描述
timestamp 必需。脚本唤醒时的时间戳。

说明
使脚本暂停执行,直到指定的 timestamp。

返回值
如果成功则返回 TRUE,失败则返回 FALSE。

错误/异常
如果指定的时间戳位于过去,则该函数将生成一个 E_WARNING。

提示和注释
注释:所有信号都将在脚本唤醒后递送。

注释:本函数未在 Windows 平台下实现。

time_sleep_until
(PHP 5 >= 5.1.0)

time_sleep_until — Make the script sleep until the specified time
设置脚本延迟执行的时间

<?php
if (!function_exists('time_sleep_until')) {
    function time_sleep_until($future) {
        if ($future < time()) {
            trigger_error("Time in past", E_USER_WARNING);
            return false;
        }
        sleep($future - time());
        return true;
    }
}
?>

<?php
//Implementation for < 5.1 or Windows users
if (!function_exists('time_sleep_until')) {
   function time_sleep_until($future) {
       if ($future < time()) {
           trigger_error("Time in past", E_USER_WARNING);
           return false;
       }
       usleep(($future - microtime(1))*1000000);
       return true;
   }
}
?>

<?php
//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
// +----------------------------------------------------------------------+
// | 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 <arpad@php.net>                                   |
// +----------------------------------------------------------------------+
//
// $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 <arpad@php.net>
* @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;
    }
}
?>

时间: 2024-10-28 02:29:17

php 定义php代码运行时间的相关文章

源码-makefile中怎么定义下载代码

问题描述 makefile中怎么定义下载代码 各位大神好,在这里请教各位一个关于makefile的问题,先行谢过.我目的是想编译fastboot源码,需要一些依赖文件,然后想在在makefile中指出下载的地址,编译时候 自动下载其余代码.手动下载代码是通过:git clone -b android-4.4_r1.2 https://android.googlesource.com/platform/system/core看了关于http://my.oschina.net/hevakelcj/b

分享一则PHP定义函数代码

 这篇文章主要介绍了分享一则PHP定义函数代码,主要是让大家熟悉下php的语法格式以及php中插入HTML代码的方式,希望能够给到大家一些帮助.     先贴代码   代码如下: <?php function table(){ echo "<table align='center' border='1' width='600' cellspacing='0';>"; echo "<caption><h1>这是表格的标题</h1&

clock_gettime测代码运行时间

//函数原型: // long clock_gettime (clockid_t which_clock, struct timespec *tp); //参数列表: // CLOCK_REALTIME:系统实时时间,随系统实时时间改变而改变,即从UTC1970-1-1 0:0:0开始计时,中间时刻如果系统时间被用户该成其他,则对应的时间相应改变. // CLOCK_MONOTONIC:从系统启动这一刻起开始计时,不受系统时间被用户改变的影响 // CLOCK_PROCESS_CPUTIME_I

php 代码运行时间查看类

php教程 代码运行时间查看类 //date:2011-08-05 class RunTime//页面执行时间类 {  private $starttime;//页面开始执行时间  private $stoptime;//页面结束执行时间  private $spendtime;//页面执行花费时间  function getmicrotime()//获取返回当前微秒数的浮点数  {   list($usec,$sec)=explode(" ",microtime());   retu

javascript中字符串的定义示例代码

 javascript中字符串如何定义,下面有个不错的示例,大家可以学习下  代码如下: <html>  <head>  <title>javascript中字符串的定义</title>  <script>  //定义字符串  //第一种  var str = new Array();  alert(str);//空字符  //第二种  var str2 = new Array("hello");  alert(str2);/

分享一则PHP定义函数代码_php技巧

先贴代码 复制代码 代码如下: <?php     function table(){         echo "<table align='center' border='1' width='600' cellspacing='0';>";         echo "<caption><h1>这是表格的标题</h1></caption>";         for($out=0; $out &l

windows c/c++ 代码运行时间,毫秒级

#pragma once /* //计算代码段运行时间的类 // */ #include <iostream> #ifndef ComputeTime_h #define ComputeTime_h class ComputeTime { private: int Initialized; __int64 Frequency; __int64 BeginTime; public: bool Avaliable(); double End(); bool Begin(); ComputeTime

php代码运行时间查看类代码分享_php技巧

复制代码 代码如下: //date:2011-08-05 class RunTime//页面执行时间类 { private $starttime;//页面开始执行时间 private $stoptime;//页面结束执行时间 private $spendtime;//页面执行花费时间 function getmicrotime()//获取返回当前微秒数的浮点数 { list($usec,$sec)=explode(" ",microtime()); return ((float)$us

javascript中字符串的定义示例代码_基础知识

复制代码 代码如下: <html> <head> <title>javascript中字符串的定义</title> <script> //定义字符串 //第一种 var str = new Array(); alert(str);//空字符 //第二种 var str2 = new Array("hello"); alert(str2);//hello //第三种 /* String 对象可用字符串文字显式创建. 用这种方法创