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

一个可以统计你程序的运行时间长知的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();