查看php执行耗时:
"; for ($i=1;$i<=10000000;$i ){} //为了实现有一定的时间差,所以用了一个for来消耗一些资源. $etime=microtime(true);//获取程序执行结束的时间 //echo $etime."
"; $ttime=$etime-$stime;//计算差值 //echo $ttime."
"; $str_total=var_export($ttime,true); if(substr_count($str_total,"e")){ //为了避免1.28746032715e-005这种结果的出现,做了一下处理. $float_total=floatval(substr($str_total,5)); $ttime=$float_total/100000; } echo $ttime.'秒'; ?>