这一次,我们重新定义智慧互联网

微信号:foreverbestvip

详细了解

每一次尝试都代表着时代的进步

微信号:foreverbestvip

详细了解

这一刻,我们都是世界的佼佼者

微信号:foreverbestvip

详细了解

智慧互联网产品开发的领航者

微信号:foreverbestvip

详细了解

玩转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

phpstorm配置

谈谈你的看法

请文明发言!