文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>PHP 计算页面执行时间

PHP 计算页面执行时间

时间:2009-04-29  来源:windlike

经常看到很多网站的页面底部有个"页面执行时间"的冬冬,如果你是程序员的话,还能够用它调试自己的程序执行效率,其实原理很简单,相信你看过本文后,很容易就能实现.

PHP:
  1.  
  2. <?php
  3. // 说明:PHP 计算页面执行时间
  4. // 整理:http://www.CodeBit.cn
  5.  
  6. class timer
  7. {
  8. var $StartTime = 0;
  9. var $StopTime = 0;
  10.  
  11. function get_microtime()
  12. {
  13. list($usec, $sec) = explode(' ', microtime());
  14. return ((float)$usec + (float)$sec);
  15. }
  16.  
  17. function start()
  18. {
  19. $this->StartTime = $this->get_microtime();
  20. }
  21.  
  22. function stop()
  23. {
  24. $this->StopTime = $this->get_microtime();
  25. }
  26.  
  27. function spent()
  28. {
  29. return round(($this->StopTime - $this->StartTime) * 1000, 1);
  30. }
  31.  
  32. }
  33.  
  34. /*
  35. //例子
  36. $timer = new timer;
  37. $timer->start();
  38. //你的代码开始
  39. $a = 0;
  40. for($i=0; $i<1000000; $i++)
  41. {
  42. $a += $i;
  43. }
  44. //你的代码结束
  45. $timer->stop();
  46. echo "页面执行时间: ".$timer->spent()." 毫秒";
  47. */
  48. ?>
  49.  
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载