이 글은 주로 PHP 7.1에서 성능 분석을 위한 xhprof 설치에 대한 소개입니다. 이제 특정 참고값이 있어서 공유합니다. 도움이 필요한 친구들이 참고할 수 있습니다
확장 기능 설치
xhprof 확장 버전 https에서 가져옴 ://github.com/longxinH/xhprof에서 가져옴(타사 라이브러리, 공식 버전은 php7을 지원하지 않음)
xhprof 확장 프로그램을 다운로드하고 컴파일
웹의 html 디렉토리에서 작동:
git clone https://github.com/longxinH/xhprof
컴파일 확장
cd xhprof/extension/phpize ./configure makemake install
Modify php.ini 구성
[xhprof] extension=xhprof.so; xhprof.output_dir=/tmp/xhprof
여기서 xhprof.output_dir은 xhprof의 출력 디렉터리이고 run_id.project_name은 xhprof 파일의 save_run 메소드가 실행될 때마다 생성됩니다. 이 디렉토리가 어디에 있는지는 중요하지 않습니다. 이 경로의 권한은 읽고 쓸 수 있어야 합니다! ! 그렇지 않으면 파일이 성공적으로 생성될 수 없습니다
php-fpm 재시작
sudo 서비스 php7.1-fpm 재시작
테스트 코드 추가
<?php xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);// 要检查性能的代码 $xhprof_data = xhprof_disable(); include_once '/var/www/html/xhprof/xhprof_lib/utils/xhprof_lib.php'; include_once '/var/www/html/xhprof/xhprof_lib/utils/xhprof_runs.php'; $xhprof_runs = new \XHProfRuns_Default(); $run_id = $xhprof_runs->save_run($xhprof_data, 'your_project');
xhprof_lib.php와 xhprof_runs.php 두 개가 도입되어야 합니다. 테스트 코드 파일에서
생성된 보고서 보기
방문해야 할 곳: xhprof/xhprof_html/index.php 파일 보기:
http://localhost/xhprof/xhprof_html/index.php?run=5b35d3dfa8c29&source=your_project
The 실행 후 매개변수는 $run_id 이고, 소스 매개변수는 your_project 구성의 이름입니다
그래프가 잘못 생성되면 플러그인을 설치해야 합니다:
sudo apt-get install graphviz
실제 데모 코드
<?php function test1(){ for($i=0;$i<10;$i++){ echo 'aaa'.$i.'<br>'; } }// start profilingxhprof_enable(); test1(); // stop profiler $xhprof_data = xhprof_disable(); // display raw xhprof data for the profiler runprint_r($xhprof_data); include_once "xhprof_lib.php";include_once "xhprof_runs.php"; // save raw data for this profiler run using default // implementation of iXHProfRuns. $xhprof_runs = new XHProfRuns_Default(); // save the run under a namespace "xhprof_test" $run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_test");echo "---------------\n". "Assuming you have set up the http based UI for \n". "XHProf at some address, you can view run at \n". "http://<xhprof-ui-address>/index.php?run=$run_id&source=xhprof_test\n". "---------------\n";
위는 이 글의 전체 내용입니다. 이 내용을 통해 배우시길 바랍니다. 도움이 되었으며, 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트를 주목해 주세요!
관련 권장 사항:
Wamp를 사용하여 Php 로컬 개발 환경을 구축하고 HBuilder 디버깅하는 방법
위 내용은 PHP 7.1의 성능 분석을 위한 xhprof 설치 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!