php xdebug
http://www.jb51.net/article/58069.htm
1、centos 安装xdebug
yum install php-pecl-xdebug
2、利用yum安装,xdebug.so自动安装到/usr/lib64/php/modules/xdebug.sophp会自动加载到内库,不需要加载时,不好去掉,所以移动到其他目录。
3、在/etc/php.d/ 下面有各个内库的配置信息,修改xdebug.ini,不然service php-fpm restart重启会警告,无法加载xdebug.so
4、移动so文件mv /usr/lib64/php/modules/xdebug.so /usr/local/src
5、修改php.ini配置信息
vim /etc/php.ini
[Xdebug] zend_debugger.allow_hosts=10.25.1.199 zend_debugger.expose_remotely=always zend_debugger.httpd_uid=-1 xdebug.auto_trace = on xdebug.auto_profile = on xdebug.collect_params = on xdebug.collect_return = on xdebug.profiler_enable = on xdebug.trace_output_dir = "/tmp" xdebug.profiler_output_dir ="/tmp" xdebug.dump.GET = * xdebug.dump.POST = * xdebug.dump.COOKIE = * xdebug.dump.SESSION = * xdebug.var_display_max_data = 4056 xdebug.var_display_max_depth = 5 xdebug.remote_enable=on xdebug.remote_handler=dbgp xdebug.remote_host= 172.16.2.50 /注意这里是,客户端的ip<即IDE的机器的ip,不是你的web server> xdebug.remote_port=9010 //这个需要和phpstorm配置的端口号一样 xdebug.remote_autostart=1 xdebug.idekey="PHPSTORM" zend_extension =/usr/local/src/xdebug.so
phpstorm进行配置