首页 > 语言 > PHP > 正文

一个php计算程序运行时间的类

2024-09-04 11:45:33
字体:
来源:转载
供稿:网友

一个可以统计你程序的运行时间长知的php类,实例代码如下:

  1. class Timer {   
  2.     private $StartTime = 0;//程序运行开始时间 
  3.     private $StopTime  = 0;//程序运行结束时间 
  4.     private $TimeSpent = 0;//程序运行花费时间 
  5.     function start(){//程序运行开始 
  6.         $this->StartTime = microtime();   
  7.     }   
  8.     function stop(){//程序运行结束 
  9.         $this->StopTime = microtime();   
  10.     }   
  11.     function spent(){//程序运行花费的时间 
  12.         if ($this->TimeSpent) {   
  13.             return $this->TimeSpent;   
  14.         } else { 
  15.          list($StartMicro$StartSecond) = explode(" "$this->StartTime); 
  16.          list($StopMicro$StopSecond) = explode(" "$this->StopTime); 
  17.             $start = doubleval($StartMicro) + $StartSecond
  18.             $stop = doubleval($StopMicro) + $StopSecond
  19.             $this->TimeSpent = $stop - $start
  20.             return substr($this->TimeSpent,0,8)."秒";//返回获取到的程序运行时间差 
  21.         }   
  22.     }   
  23. }   
  24. $timer = new Timer();   
  25. $timer->start(); 
  26. //...程序运行的代码 
  27. $timer->stop(); 
  28. echo "程序运行时间为:".$timer->spent(); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表