玩转Xdebug
免费 - Sunrise - - 浏览量: 0 - 文章来源
安装Xdebug
$ wget https://xdebug.org/files/xdebug-2.6.0.tgz
$ tar -xzvf xdebug-2.6.0.tgz
$ cd xdebug-2.6.0
$ /usr/local/php/bin/phpize
$ ./configure --with-php-config=/usr/local/php/bin/php-config --enable-xdebug
$ make && make install
修改php配置文件
$ vi /usr/local/php/php.ini
添加如下配置:
zend_extension=xdebug.so
[xdebug]
xdebug.profiler_enable=on
xdebug.trace_output_dir="/usr/local/php/xdebug"
xdebug.profiler_output_dir="/usr/local/php/xdebug"
xdebug.show_exception_trace=On
xdebug.max_nesting_level=200
xdebug.var_display_max_depth=5
xdebug.idekey=PHPSTORM
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=10000
xdebug.profiler_enable=1
service httpd restart