欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php学习之计算程序运行的时间_PHP教程

程序员文章站 2022-03-25 10:21:03
...
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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/364584.htmlTechArticlephp学习之计算程序运行的时间 ? function gettime(){ $starttime=microtime(true); //获取程序开始执行的时间 mt_rand(1,10); //你执行的代码 liehuo。net $endt...