第一步: 在服务器上安装PHP对应版本的Xdebug
这个步骤很简单,先用phpinfo()函数看看本地的PHP版本信息,然后去Xdebug的官网下载对应版本的Xdebug,注意一定要区分32位系统和64位系统。
第二步: 在php.ini文件中添加以下Xdebug的配置信息
[PHP_Xdebug]
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.profiler_enable=1
xdebug.profiler_enable_trigger=1
xdebug.profiler_append=On
;xdebug.profiler_output_dir=/dev/null
xdebug.remote_enable=true
;remote_host=10.49.6.243
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.auto_trace=1
xdebug.profiler_enable = 1
xdebug.remote_autostart = On
xdebug.remote_connect_back=On
xdebug.show_local_vars=On
xdebug.extended_info=1
第三步: 在你的编辑器中配置Xdebug的服务器信息,这个步骤看你使用的编辑器各有不同。
个人建议使用Zend Studio 这个是编辑 PHP程序功能最强大的编辑器。
第四步: 启动Xdebug网页远程调试功能,在编辑器中打断点,Xdebug会自动停止在断点位置。
- 本文固定链接: http://www.web8899.com/2013/11/05/xdebug远程调试服务器端配置/
- 转载请注明: dean 于 迈向卓越-个人博客 发表