XHProf是Facebook开发的性能调试工具,帮助我们的PHP程序性能调优,更加健壮。XHProf安装和使用方法将在本章讲解。XHProf是PHP的PECL扩展。没有XDeBug那些耗费资源,更加的小巧。
流程:程序开头打点,结尾打点。那么XHProf机会记录在两个点之间的所有代码响应时所耗费的时间、内存、CPU等各项指标,我们也可以知道一次请求调用了多少次MySQL,多少次Memcache,更加直观的指明优化道路。
安装:
<precourier new white-space:pre-wrap padding:9.5px margin-top:0px margin-bottom:10px line-height:1.42857 word-break:break-all word-wrap:break-word border:1px solid rgb background-color:rgb>------------下载并编译PHP-XHProf源码------------
wget http://pecl.php.net/get/xhprof-0.9.4.tgz
tar -zxvf xhprof-0.9.4.tgz
cd xhprof-0.9.4
cd extension
phpize
./configure --enable-xhprof
make
make test
sudo make install
------------修改php.ini---------------
sudo vim /etc/php.ini
#在php.ini最下方加入以下:
extension=xhprof.so
xhprof.output_dir="/var/www/xhprof"
-----------重启Apache--------------
sudo apache restart
방금 압축을 푼 설치 패키지 폴더에 들어가서 xhprof_lib, xhprof_html을 프로젝트 디렉터리에 복사합니다. 다음으로, 두 개의 점의 시작 부분인 헤더 파일 head.php를 만듭니다: <precourier new white-space:pre-wrap padding:9.5px margin-top:0px margin-bottom:10px line-height:1.42857 word-break:break-all word-wrap:break-word border:1px solid rgb background-color:rgb>//head.php
<?php
if(extension_loaded('xhprof')){
//载入下载的XHPROF包中的2个文件夹
include_once 'xhprof_lib/utils/xhprof_lib.php';
include_once 'xhprof_lib/utils/xhprof_runs.php';
xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
}
그런 다음 두 점의 마지막 부분인 하단 파일 foot.php를 만듭니다: //foot.php
save_run($xhprofData, $ns);
//前端展示库的URL
$url = 'http://localhost/xhprof_html/index.php';
$url .= '?run=%s&source=%s';
//变量替换
$url = sprintf($url, $runId, $ns);
//输入URL
echo '查看结果';
}
적용의 마지막 단계: 점 . 이제 테스트 파일 index.php를 생성합니다. 내 큰 Hello World를 테스트해 보세요. //index.php
auto_prepend_file = /var/www/head.php
auto_append_file = /var/www/foot.php
또는 .htaccess에 php_value auto_prepend_file = /var/www/head.php
php_value auto_append_file = /var/www/foot.php
추가 오류: 1. 그림을 보기 위해 [전체 호출 그래프 보기]를 클릭하면 오류가 보고됩니다. cmd 실행 실패: "dot -Tpng". stderr: `sh : dot: 명령을 찾을 수 없습니다`. 이유: 이유: 그래픽 도구가 설치되지 않았습니다. 해결책: //红帽系列
yum install graphviz
//Ununtu
apt-get install graphviz
//OS X
brew install graphviz
위 내용은 관련 내용을 포함하여 XHProf(PHP 성능 테스트 아티팩트)의 설치 및 사용 방법을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.