Home > php教程 > PHP源码 > body text

PHP calculate page execution time

大家讲道理
Release: 2016-11-11 10:29:55
Original
1536 people have browsed it

<?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[&#39;REQUEST_TIME_FLOAT&#39;]))
            echo &#39;<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次执行时间:&#39;, microtime(TRUE) - $this->microtime, &#39;秒</div>&#39;;
        else
            echo &#39;<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次执行时间:&#39;, microtime(TRUE) - $_SERVER[&#39;REQUEST_TIME_FLOAT&#39;], &#39;秒</div>&#39;;
    }
}
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!