PHP获取PHP执行的时间详解编程语言

php获取PHP执行的时间


//程序运行时间
$starttime = explode(' ',microtime());


//代码区域

//程序运行时间
$endtime = explode(' ',microtime());
$thistime = $endtime[0]+$endtime[1]-($starttime[0]+$starttime[1]);
$thistime = round($thistime,3);
echo "本网页执行耗时:".$thistime." 秒。".time();
exit();

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/19114.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论