>백엔드 개발 >PHP 튜토리얼 >PHP 7.1의 성능 분석을 위한 xhprof 설치 소개

PHP 7.1의 성능 분석을 위한 xhprof 설치 소개

不言
不言원래의
2018-07-04 17:18:281728검색

이 글은 주로 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 &#39;/var/www/html/xhprof/xhprof_lib/utils/xhprof_lib.php&#39;;
include_once &#39;/var/www/html/xhprof/xhprof_lib/utils/xhprof_runs.php&#39;;
$xhprof_runs = new \XHProfRuns_Default();
$run_id = $xhprof_runs->save_run($xhprof_data, &#39;your_project&#39;);

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 &#39;aaa&#39;.$i.&#39;<br>&#39;;
}
}// 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 중국어 웹사이트를 주목해 주세요!

관련 권장 사항:

LAMP, LNMP 및 LNAMP의 차이점 및 설치

Wamp를 사용하여 Php 로컬 개발 환경을 구축하고 HBuilder 디버깅하는 방법

위 내용은 PHP 7.1의 성능 분석을 위한 xhprof 설치 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.