龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

PHP 计算页面执行时间

时间:2014-07-18 02:02来源:网络整理 作者:网络 点击:
分享到:
PHP 计算页面执行时间 自己写了个计算页面执行时间的脚本执行时间会显示在页面右上角优点是只要在开始的时候执行一下就可以了[代码片段(23行)]

自己写了个计算页面执行时间的脚本

执行时间会显示在页面右上角

优点是只要在开始的时候执行一下就可以了

<?php
$t = new executeTime;

phpinfo();

class executeTime{
    private $microtime;
    public function __construct(){
        $this->microtime = microtime(true);
    }

        public function getNow(){
                $this->__dectruct();
        }

    public function __destruct(){
        if (empty($_SERVER['REQUEST_TIME_FLOAT']))
            echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次执行时间:', microtime(TRUE) - $this->microtime, '秒</div>';
        else
            echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次执行时间:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒</div>';
    }
}
//该片段来自于http://outofmemory.cn
精彩图集

赞助商链接