php实现用于计算执行时间的类实例

这篇文章主要介绍了php实现用于计算执行时间的类,实例分析了php计算运行实现的类实例与相关使用技巧,非常具有实用价值,需要的朋友可以参考下。

本文实例讲述了php实现用于计算执行时间的类,分享给大家供大家参考,具体如下:

有了这个php类,计算函数或者一段代码的执行时间就简单了

  1. <?php
  2. class c_Timer {
  3. var $t_start = 0;
  4. var $t_stop = 0;
  5. var $t_elapsed = 0;
  6. function start() {
  7. $this->t_start = microtime();
  8. }
  9. function stop() {
  10. $this->t_stop = microtime();
  11. }
  12. function elapsed() {
  13. if ($this->t_elapsed) {
  14. return $this->t_elapsed;
  15. } else {
  16. $start_u = substr($this->t_start,0,10);
  17. $start_s = substr($this->t_start,11,10);
  18. $stop_u = substr($this->t_stop,0,10);
  19. $stop_s = substr($this->t_stop,11,10);
  20. $start_total = doubleval($start_u) + $start_s;
  21. $stop_total = doubleval($stop_u) + $stop_s;
  22. $this->t_elapsed = $stop_total - $start_total;
  23. return $this->t_elapsed;
  24. }
  25. }
  26. };
  27. ?>

用法示例如下:

  1. <?php
  2. $timer = new c_Timer;
  3. $timer->start();
  4. echo "<hr>";
  5. $timer->stop();
  6. echo $timer->elapsed();
  7. ?>