Facebook 2009年開發的 XHProf 只能使用在 PHP5,PHP7 需要找善心人士改寫的版本
- 註:XHProf 使用說明可見此篇:PHP 效能分析工具 XHProf
PHP7 效能分析工具 XHProf
XHProf 有找到幾個改寫的專案,如下述:
- GitHub - longxinH/xhprof: PHP7 support
- GitHub - yaoguais/phpng-xhprof: upgrade xhprof extension to PHP7
- GitHub - phacility/xhprof: XHProf is a function-level hierarchical profiler for PHP and has a simple HTML based user interface.
- tideways/php-xhprof-extension: Modern XHProf compatible PHP Profiler for PHP 7
在此使用 longxinH/xhprof 的版本,此版本除了原本的功能外,還有做些額外加工,可以把 PDO prepare 的 SQL 語法印出來
PHP7 XHProf 安裝步驟 (Debian Linux)
- git clone https://github.com/longxinH/xhprof.git ./xhprof
- cd xhprof/extension/
- phpize # php7 version
- ./configure --with-php-config=/usr/bin/php-config # php7 version
- make
- sudo make install # Installing shared extensions: /usr/lib/php/20151012/
- vim /etc/php/7.0/mods-available/xhprof.ini # 增加下述內容
[xhprof] extension = xhprof.so xhprof.output_dir = /tmp/xhprof
- sudo phpenmod xhprof # 產生 /etc/php/7.0/apache2/conf.d/20-xhprof.ini
- sudo systemctl reload apache2.service