当前位置:Gxlcms > PHP教程 > php计算一个页面执行时间函数写法

php计算一个页面执行时间函数写法

时间:2021-07-01 10:21:17 帮助过:25人阅读

<?php
/*
@ 计算php程序运行时间
*/
function microtime_float()
{
list($usec, $sec) = explode(” “, microtime());
return ((float)$usec + (float)$sec);
}
//开始计时,放在头部
$starttime = microtime_float();
//结束计时,放在最底部
$runtime = number_format((microtime_float() – $starttime), 4).'s';
//
输出 echo ‘RunTime:'.$runtime; ?>

人气教程排行