程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP 計算頁面執行時間

PHP 計算頁面執行時間

編輯:關於PHP編程

自己寫了個計算頁面執行時間的腳本 
執行時間會顯示在頁面右上角
優點是只要在開始的時候執行一下就可以了    

代碼片段(1)

[代碼] [PHP]代碼

01 <?php 02 $t new executeTime; 03   04 phpinfo(); 05   06 class executeTime{ 07     private $microtime; 08     public function __construct(){ 09         $this->microtime = microtime(true); 10     } 11   12         public function getNow(){ 13                 $this->__dectruct(); 14         } 15   16     public function __destruct(){ 17         if (empty($_SERVER['REQUEST_TIME_FLOAT'])) 18             echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次執行時間:', microtime(TRUE) - $this->microtime, '秒</div>'; 19         else 20             echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次執行時間:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒</div>'; 21     } 22 }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved