php計算頁面執行時間代碼

WBOY
發布: 2016-07-25 08:45:07
原創
1141 人瀏覽過
  1. class c_Timer {
  2. var $t_start = 0;
  3. var $t_stop = 0;
  4. var $t_elapsed = 0;
  5. function start() { $this->t_start = microtime(); }
  6. function stop() { $this->t_stop = microtime(); }
  7. function elapsed() {
  8. if ($this->t_elapsed) {
  9. return $this->t_elapsed;
  10. } else {
  11. $start_u = substr($this->t_start,0,10);
  12. $start_s = substr($this->t_start,11,10);
  13. $stop_u = substr($this->t_stop,0,10);
  14. $stop_s = substr($this->t_stop,11,10);
  15. $start_total = doubleval($start_u) $start_s;
  16. $stop_total = doubleval($stop_u) $stop_s;
  17. $this->t_elapsed = $stop_total - $start_total;
  18. return $this->t_elapsed;
  19. }
  20. }
  21. };
  22. /* Here's an example usage:
  23. $timer = new c_Timer;
  24. $timer->start();
  25. echo "
    ";
  26. $timer->stop();
  27. echo $timer->elapsed();
  28. */
  29. ?>
复制代码

執行時間, php


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板