「Php/速度改善/XHProf/php7」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==php7でXHProfは現在(2016/2/17)まだ未対応== 非公式っぽいライブラリがあるようなのでそれを導入 ==インストール== cd /usr/local/src...」) |
|||
| 行18: | 行18: | ||
xhprof.output_dir = /tmp/xhprof | 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 | ||
| + | |||
| + | ==参考== | ||
| + | http://qiita.com/morisuke/items/49f17bda2c764ae8f725 | ||
2016年2月17日 (水) 19:39時点における版
php7でXHProfは現在(2016/2/17)まだ未対応
非公式っぽいライブラリがあるようなのでそれを導入
インストール
cd /usr/local/src git clone https://github.com/Yaoguais/phpng-xhprof.git cd phpng-xhprof phpize ./configure make make test sudo make install
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
