facebook twitter hatena line email

Php/速度改善/XHProf/php7

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

php7についてXHProfは公式では現在(2016/2/17)まだ未対応

非公式っぽいライブラリがあるようなのでそれを導入

インストール

cd /usr/local/src
git clone https://github.com/Yaoguais/phpng-xhprof.git
cd phpng-xhprof
/path/to/php7/bin/phpize
./configure --with-php-config=/path/to/php7/bin/php-config
make
make test
sudo make install

xhprofのextention追加

$ vi /etc/php.d/xhprof.ini
[xhprof]
extension=phpng_xhprof.so
xhprof.output_dir = /tmp/xhprof

確認

php -r "phpinfo();" | grep xhprof
/etc/php.d/xhprof.ini
xhprof
xhprof => 0.9.5
PWD => /usr/local/src/phpng-xhprof
$_SERVER['PWD'] => /usr/local/src/phpng-xhprof

xhprof_htmlとxhprof_lib

$ composer require facebook/xhprof dev-master
$ cp -R vendor/facebook/xhprof/xhprof_html/ ./
$ cp -R vendor/facebook/xhprof/xhprof_lib/ ./

参考

http://qiita.com/morisuke/items/49f17bda2c764ae8f725