Maison >développement back-end >tutoriel php >一个计算程序运行时间的php类

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

WBOY
WBOYoriginal
2016-07-25 09:03:291260parcourir
  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. ?>
复制代码


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn