Heim >php教程 >php手册 >计算php页面运行时间的函数介绍

计算php页面运行时间的函数介绍

WBOY
WBOYOriginal
2016-06-06 20:28:441277Durchsuche

本篇文章是对计算php页面运行时间的函数进行了详细的分析介绍,需要的朋友参考下

一个计算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;
?>

,美国空间
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn