一個計算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), 4).'s';
//輸出
echo ‘RunTime:'.$runtime;
?>