php计算网页执行时间

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

microtime():获取毫秒级的UNIX时间戳

    <?php  
    $t=microtime();  
    /* 
    你要执行的代码 
    */  
    echo "哦啦啦啦啦啦啦啦";  
    $t=microtime()-$t;  
    echo "<br>本次代码执行用了$t毫秒.";  
    ?>