当前位置:Gxlcms > PHP教程 > 解读PHP计算页面执行时间的具体代码实现_PHP教程

解读PHP计算页面执行时间的具体代码实现_PHP教程

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

通过对PHP计算页面执行时间的代码如下所示:

  1. php
  2. class runtime
  3. {
  4. var $StartTime = 0;
  5. var $StopTime = 0;
  6. function get_microtime()
  7. {
  8. list($usec, $sec) = explode(' ', microtime());
  9. return ((float)$usec + (float)$sec);
  10. }
  11. function start()
  12. {
  13. $this->StartTime = $this->get_microtime();
  14. }
  15. function stop()
  16. {
  17. $this->StopTime = $this->get_microtime();
  18. }
  19. function spent()
  20. {
  21. return round(($this->StopTime - $this->StartTime) * 1000, 1);
  22. }
  23. }
  24. //例子
  25. $runtime= new runtime;
  26. $runtime->start();
  27. //你的代码开始
  28. $a = 0;
  29. for($i=0; $i<1000000; $i++)
  30. {
  31. $a += $i;
  32. }
  33. //你的代码结束
  34. $runtime->stop();
  35. echo "页面执行时间: ".$runtime->spent()." 毫秒";
  36. ?>

通过对PHP计算页面执行时间的代码的了解,新手们应该自己再实际操作一遍,以加深自己的理解。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/446322.htmlTechArticle通过对 PHP计算页面执行时间的代码如下所示: ? php classruntime { var$ StartTime = 0 ; var$ StopTime = 0 ; functionget_microtime() { list($usec,$sec)=explode('',mi...

人气教程排行