首页 > 开发 > PHP > 正文

计算页面执行时间

2024-05-04 22:54:31
字体:
来源:转载
供稿:网友
计算页面执行时间
在php网页的开头加入以下

<?

$time_start = getmicrotime();

function getmicrotime()

{

list($usec, $sec) = explode(" ",microtime());

return ((float)$usec + (float)$sec);

}

?>

然后到最后加入以下代码

<?

$time_end = getmicrotime();

printf ("[页面执行时间: %.2f毫秒]/n/n",($time_end - $time_start)*1000);

?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表