ホームページ >バックエンド開発 >PHPチュートリアル >php-timeit は、php 関数の実行時間を推定します。
まず、少し前に手元にあった日本のVPSを使用してGoogleプロキシを設定しました。アクセス速度は問題ありませんので、共有したいと思います:
Googlegugeそれが機能しない場合は、 119
を呼び出すだけです Google: guge119.com
Google Scholar: scholar.guge119.com
PHPのパフォーマンスを最適化するとき、Pythonでは特定の関数の実行時間を知る必要があることがあります。 timeit モジュールがあります。PHP にも同様のモジュールはありますか?
そこで、次のように簡単な timeit 関数を自分で書きました:
/** * Compute the delay to execute a function a number of time * @param $count Number of time that the tests will execute the given function * @param $function the function to test. Can be a string with parameters (ex: 'myfunc(123, 0, 342)') or a callback * @return float Duration in seconds (as a float) */ function timeit($count, $function<span>) { if ($count <= 0<span>){ echo "Error: count have to be more than zero"<span>; return -1<span>; } $nbargs = func_num_args<span>(); if ($nbargs < 2<span>) { echo 'Error: No Funciton!'<span>; echo 'Usage:'<span>; echo "\ttimeit(count, 'function(param)')"<span>; echo "\te.g:timeit(100, 'function(0,2)')"<span>; return -1; // no function to time <span> } // Generate callback $func = func_get_arg(1<span>); $func_name = current(explode('(', $func<span>)); if (!function_exists($func_name<span>)) { echo 'Error: Unknown Function'<span>; return -1; // can't test unknown function <span> } $str_cmd = ''<span>; $str_cmd .= '$start = microtime(true);'<span>; $str_cmd .= 'for($i=0; $i<'.$count.'; $i++) '.$func.';'<span>; $str_cmd .= '$end = microtime(true);'<span>; $str_cmd .= 'return ($end - $start);'<span>; return eval($str_cmd<span>); }</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
次のように、私が作成したルート探索アルゴリズムとシステムの組み込みルート探索関数の実行時間をテストします:
//取平方根 function sqrt_nd($num<span>){ $value = $num<span>; while(abs($value*$value -$num) > 0.001<span>){ $value = ($value + $num/$value)/2<span>; } return $value<span>; } print timeit(1000, 'sqrt_nd(5)'<span>); print "\n"<span>; print timeit(1000, 'sqrt(5)');</span></span></span></span></span></span>
テスト結果は以下の通りです:
0.028280019760132 0.0041000843048096
組み込みルート関数はカスタムルート関数よりも6倍以上高速であることがわかります~~
上記では、php-timeit が PHP 関数の実行時間を推定する方法をその側面も含めて紹介しました。PHP チュートリアルに興味のある友人の役に立てば幸いです。