php程式碼運行時間查看類別程式碼分享

高洛峰
發布: 2023-03-01 12:04:01
原創
1023 人瀏覽過

程式碼如下: 
//date:2011-08-05 
class RunTime//頁面執行時間類別 

private $starttime;//頁面開始執行時間 
private $stoptime;//頁結束執行時間spendtime;//頁面執行花費時間 
function getmicrotime()//取得傳回目前微秒數的浮點數 

list($usec,$sec)=explode(" ",microtime()); 
return (($sec)=explode(" ",microtime()); 
return ((( float)$usec + (float)$sec); 

function start()//頁面開始執行函數,回傳開始頁面執行的時間 

$this->starttime=$this->getmicrotime(); 
); 

function end()//顯示頁面執行的時間 

$this->stoptime=$this->getmicrotime(); 
$this->spendtime=$this->stoptime-$this->starttime;$this->spendtime=$this->stoptime-$this->starttime; 
; //return round($this->spendtime,10); 

function display() 

//$this->end(); 
echo "

運轉時間:".round($this-this-this >spendtime,10)."秒

"; 


/*呼叫方法 
$timer=new Runtime(); $timer->start(); 🎜
相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!