Heim >php教程 >php手册 >分段计算PHP脚本的执行时间

分段计算PHP脚本的执行时间

WBOY
WBOYOriginal
2016-06-06 20:12:401341Durchsuche

分段计算PHP脚本的执行时间 很多时候我们需要计算PHP脚本的执行时间,来获知脚本的效率等问题。比如有一个一大段的PHP脚本,我们就需要一个分段获取脚本执行时间的方法。先介绍要用到的函数: // 计时函数 //PHP5.5中不建议使用split函数,略有修改function

分段计算PHP脚本的执行时间

很多时候我们需要计算PHP脚本的执行时间,来获知脚本的效率等问题。比如有一个一大段的PHP脚本,我们就需要一个分段获取脚本执行时间的方法。先介绍要用到的函数:

// 计时函数 
//PHP5.5中不建议使用split函数,略有修改
function runtime($mode = 0) {
    static $t;
    if(!$mode) {
        $t = microtime();
        return;
    }
    $t1 = microtime();
    $arr_t0 = explode(" ",$t);
    $arr_t1 = explode(" ",$t1);
    return sprintf("%.3f ms",(array_sum($arr_t1)-array_sum($arr_t0))*1000);
}
runtime(); //计时开始 
/*
// 要计算的PHP脚本
$result = 0;
for($i = 0; $i 
    <p class="copyright">
        原文地址:分段计算PHP脚本的执行时间, 感谢原作者分享。
    </p>
    
    


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