php學習之計算程序運行的時間
<?
function gettime(){
$starttime=microtime(true); //獲取程序開始執行的時間
mt_rand(1,10); //你執行的代碼 liehuo。net
$endtime=microtime(true);//獲取程序執行結束的時間
$total=$endtime-$starttime; //計算差值
return $total;
}
echo gettime();
?>
原文地址:http://www.52blogger.com/archives/5