计算页面执行时间
类别: PHP教程
计算页面执行时间
在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);
?>
在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);
?>
- 上一篇: php & mysql 三日通
- 下一篇: 随时给自己贴的图片加文字
-= 资 源 教 程 =-
文 章 搜 索