Home > Backend Development > PHP Tutorial > 解析PHP计算页面执行时间的实现代码_php技巧

解析PHP计算页面执行时间的实现代码_php技巧

WBOY
Release: 2016-05-17 09:00:36
Original
1081 people have browsed it

如下所示:

复制代码 代码如下:

 $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 '
本次执行时间:', microtime(TRUE) - $this->microtime, '秒
';
         else
             echo '
本次执行时间:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒
';
     }
 }
Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template