ホームページ  >  記事  >  バックエンド開発  >  ページの実行時間を記録するphpコード

ページの実行時間を記録するphpコード

WBOY
WBOYオリジナル
2016-07-25 08:46:02781ブラウズ
    class runtime
  1. {
  2. var $StartTime = 0;
  3. var $StopTime = 0;
  4. function get_microtime()
  5. {
  6. list($usec, $sec) =explode(' ', microtime());
  7. return ((float)$usec + (float)$sec);
  8. 関数 start()
  9. {
  10. $this->StartTime = $this->get_microtime() }
  11. 関数 stop()
  12. {
  13. $this->StopTime = $this->get_microtime(); }
  14. 関数 Spent()
  15. {
  16. returnround(($this->StopTime - $this- >StartTime) * 1000, 1);
  17. }
  18. }
  19. //Example
  20. $runtime= new runtime;
  21. $runtime->start();
  22. //コードの開始
  23. $a = 0 ;
  24. for($i=0; $i{
  25. $a += $i;
  26. }
  27. //コードの終わり
  28. $runtime->stop();
  29. echo "ページの実行時間: ".$runtime->spent()." ミリ秒";
  30. ?>
  31. コードをコピー

実行時間、php
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。