熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP 計算頁面執行時間

2022-06-13   來源: PHP編程 

  自己寫了個計算頁面執行時間的腳本

  執行時間會顯示在頁面右上角

  優點是只要在開始的時候執行一下就可以了

  代碼片段()[代碼] [PHP]代碼

   <?php

   $t = new executeTime;

  

   phpinfo();

  

   class executeTime{

       private $microtime;

       public function __construct(){

           $this>microtime = microtime(true);

       }

  

           public function getNow(){

                   $this>__dectruct();

           }

  

       public function __destruct(){

           if (empty($_SERVER[REQUEST_TIME_FLOAT]))

               echo <div >本次執行時間 microtime(TRUE) $this>microtime 秒</div>;

           else

               echo <div >本次執行時間 microtime(TRUE) $_SERVER[REQUEST_TIME_FLOAT] 秒</div>;

       }

   }


From:http://tw.wingwit.com/Article/program/PHP/201311/20806.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.