우선 얼마전 구글 프록시를 구축하기 위해 일본 VPS를 사용했습니다. 접속 속도는 괜찮습니다.
구글 구게 그래도 안되면 119
Google: guge119.com
Google 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>
제가 작성한 근 찾기 알고리즘과 시스템에 내장된 루트를 테스트해 보세요. 찾기 기능 루트 찾기 함수 실행 시간이 6배 이상 빨라졌습니다~~
위 내용은 php-timeit이 PHP 함수의 실행 시간을 추정하는 방법과 그 측면을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.
//取平方根 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>