요청에서 특정 PHP 메소드가 호출되는 횟수와 매번 호출되는 시간 및 메모리 소비를 어떻게 감지할 수 있나요?
요청에서 특정 PHP 메소드가 호출되는 횟수와 매번 호출되는 시간 및 메모리 소비를 어떻게 감지할 수 있나요?
<code class="php">function microtime_float () { list( $usec , $sec ) = explode ( " " , microtime ()); return ((float) $usec + (float) $sec ); } function test(){ static $num = 0; $num ++; $memory = memory_get_usage () ; $time_start = microtime_float (); // 操作过程略 usleep ( 100 ); $m = memory_get_usage () -$memory;//内存 $t = microtime_float () -$time_start;//耗时 return [$num,$m,$t]; } test(); test(); print_r(test()); Array ( [0] => 3 [1] => 0 [2] => 0.00016498565673828 )</code>
이것이 필요할 수도 있습니다
xdebug
+ kcachegrind
을 구성하면 문제가 없습니다.