时间:2021-07-01 10:21:17 帮助过:6人阅读
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
http://www.bkjia.com/PHPjc/364584.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/364584.htmlTechArticlephp学习之计算程序运行的时间 ? function gettime(){ $starttime=microtime(true); //获取程序开始执行的时间 mt_rand(1,10); //你执行的代码 liehuo。net $endt...