상대적으로 높은 효율성이 요구되는 일부 기능 모듈을 개발할 때 프로그램의 병목 현상을 분석해야 하는 경우가 많습니다. 다음 도구를 사용하면 PHP 스크립트 실행 과정을 쉽게 볼 수 있습니다. 구성 단계는 다음과 같습니다.
1. PHP 설치 /local/php54/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so
xdebug.profiler_output_dir="/mnt/hgfs/web/log/ xdebug"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_autostart = 켜짐
xdebug.remote_enable = 켜짐
xdebug.profiler_enable_trigger=1
xdebug.remote_host="127.0.0.1"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.remote_mode=req
이 구성 후에는 PHP 프로그램을 정상적으로 실행하면 성능 디버깅 파일의 URL에 XDEBUG_PROFILE=1 매개변수를 추가해야만 디버깅 문서가 생성됩니다. 디버그 파일은 xdebug.profiler_output_dir 매개변수로 구성된 경로에 있습니다.
2. 디버깅 파일을 구문 분석하는 도구인 qcachegrind를 설치합니다.
다운로드 주소: http://sourceforge.net/projects/qcachegrindwin/
qcachegrind를 열고, 이전에 생성된 디버그 파일을 선택하여 열어서 봅니다.
사실 이 유형의 도구가 여러 개 있는데 제가 사용해본 도구는 이 도구가 더 간단하다고 느꼈습니다.