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

計算php頁面運行時間的函數介紹

2022-06-13   來源: PHP編程 
本篇文章是對計算php頁面運行時間的函數進行了詳細的分析介紹需要的朋友參考下  

  一個計算php頁面運行時間的函數

復制代碼 代碼如下:

  
<?php
/*
@ 計算php程序運行時間
*/
function microtime_float()
{
list($usec $sec) = explode(” “ microtime());
return ((float)$usec + (float)$sec);
}
//開始計時放在頭部
$starttime = microtime_float();
//結束計時放在最底部
$runtime = number_format((microtime_float() – $starttime) )s;
//輸出
echo ‘RunTime:$runtime;
?>


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