xhprof php性能分析php
1.clone xhprof 此版本爲github第三方擴展 (php官房不支持 php 7)html
https://github.com/longxinH/xhprof
2.extension 目錄爲擴展源碼安狀擴展便可nginx
phpize && ./configure && make && make install
3.編輯php.ini 啓用xhprof擴展git
[xhprof] extension = xhprof.so xhprof.output_dir = /tmp/xhprof ;性能分析數據文件存放位置 須要php用戶有可寫可讀權限
4.對項目入口文件添加代碼github
xhprof_enable(XHPROF_FLAGS_NO_BUILTINS + XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); register_shutdown_function(function (){ $data = xhprof_disable(); //xhprof_lib 在第一步git clone 後的文件夾裏面 include '/mnt/d/www/xhprof/xhprof_lib/utils/xhprof_lib.php'; include '/mnt/d/www/xhprof/xhprof_lib/utils/xhprof_runs.php'; $objXhprofRun = new XHProfRuns_Default(); $objXhprofRun->save_run($data, "table"); //生成數據文件後綴 });
5.nginx 或者 apache 建立 網佔目錄(apache爲例)apache
<VirtualHost *:80> ServerName xhprof.com ## xhprof/xhprof_html 在第一步git clone 後的文件夾裏面 DocumentRoot "/mnt/d/www/xhprof/xhprof_html" DirectoryIndex index.html index.php index.html <Directory "/mnt/d/www/xhprof/xhprof_html"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> </VirtualHost>
6.訪問http://xhprof.com/ (上面虛擬主機配置的 本地域名須要host )顯示每次程序運行生成的性能分析數據文件 點擊能夠打 開
ubuntu
7.若是想要查看性能圖點擊 view full callgraph (服務器須要安裝 graphviz 庫)服務器
ubuntu 安裝方法 (pro apt-get install graphviz)
8.顯示效果圖ide