在文件头加入
$stime=microtime(true);
在文件尾加入
$etime=microtime(true);//获取程序执行结束的时间$total=$etime-$stime; //计算差值echo "[页面执行时间:{$total} ]秒";
这样就能计算PHP执行时间。