当前位置:Gxlcms > PHP教程 > 一个计算程序运行时间的php类

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

时间:2021-07-01 10:21:17 帮助过:19人阅读

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

人气教程排行