欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 计算页面执行时间

程序员文章站 2022-05-06 22:36:00
...
自己写了个计算页面执行时间的脚本
执行时间会显示在页面右上角
优点是只要在开始的时候执行一下就可以了
  1. $t = new executeTime;
  2. phpinfo();
  3. class executeTime{
  4. private $microtime;
  5. public function __construct(){
  6. $this->microtime = microtime(true);
  7. }
  8. public function getNow(){
  9. $this->__dectruct();
  10. }
  11. public function __destruct(){
  12. if (empty($_SERVER['REQUEST_TIME_FLOAT']))
  13. echo '
    本次执行时间:', microtime(TRUE) - $this->microtime, '秒
    ';
  14. else
  15. echo '
    本次执行时间:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒
    ';
  16. }
  17. }
复制代码