计算PHP脚本运行时间的代码
来源:互联网 作者:未知 发布时间:2008-01-10
? php function getmicrotime (){ list( $usec , $se
<?php
function getmicrotime(){
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
//例子
//开始
$time_start = getmicrotime();
//这里放你的代码
//结束
$time_end = getmicrotime();
$time = $time_end - $time_start;
echo "Did nothing in $time seconds"; //输出运行总时间
?> 延伸阅读:PHP的日期时间函数date()详解php中计算时间差的几种方法 计算php程序执行时间mysql 时间转换函数的用法使用PHP中的日期和时间函数PHP SESSION过期时间问题PHP控制网页过期时间的代码