一個計算php頁面運行時間的函數
<?php
/*
@ 計算php程序運行時間
*/
function microtime_float()
{
list($usec
return ((float)$usec + (float)$sec);
}
//開始計時
$starttime = microtime_float();
//結束計時
$runtime = number_format((microtime_float() – $starttime)
//輸出
echo ‘RunTime:
?>
From:http://tw.wingwit.com/Article/program/PHP/201311/20941.html