php计算运行时间

function getmicrotime(){
    list($usec, $sec) = explode(" ",microtime());
    return ((float)$usec + (float)$sec);
}

在php文件开始时获得开始值 , 在最后获得结束值,两者相减就得得运行时间
<?php
function getmicrotime(){
    list($usec, $sec) = explode(" ",microtime());
    return ((float)$usec + (float)$sec);
}
$begin=getmicrotime();

……
.
.
.
.
……
$end=getmicrotime();

echo '运行时间:'.($end-$begin);

?>
posted on 2011-03-31 20:27  say0507  阅读(474)  评论(0编辑  收藏  举报