PHP 计算程序运行时间
程序员文章站
2022-05-26 22:23:27
...
//转载 原链接:https://www.cnblogs.com/simadongyang/p/7826038.html
<?php
//程序运行时间
$starttime = explode(' ',microtime());
echo microtime();
/*········以下是代码区·········*/
for($i=0;$i<1000000;$i++){
$i;
}
/*········以上是代码区·········*/
//程序运行时间
$endtime = explode(' ',microtime());
$thistime = $endtime[0]+$endtime[1]-($starttime[0]+$starttime[1]);
$thistime = round($thistime,3);
echo "本网页执行耗时:".$thistime." 秒。".time();
?>
下面这种写法有时候计算出来的值是负数,不推荐。
//程序运行时间
$starttime =microtime(); //microtime返回当前 Unix 时间戳和微秒数
/*········以下是代码区·········*/
/*········以上是代码区·········*/
//程序运行时间
$endtime = microtime();
$timeInterval = $endtime-$starttime;
$timeInterval = round($timeInterval,6);
echo "<br/>----------------<br/>本网页执行耗时:".$timeInterval." 秒。";
microtime
用法
参考文档:https://www.php.net/manual/zh/function.microtime.php
上一篇: CSS
下一篇: Markdown语法学习