php学习系列之-eclipse的xdebug使用
这个礼拜6点早起,周二的一天早上发现eclipse(使用的是标准版eclipse2020版本)中调试php比较麻烦。需要设置xdebug这个插件。
参考了不少网页的做法,现总结如下:
eclipse2020版本的已经内置xdebug,需要稍微配置下就可以用了(如果不配置则无法调试php)。
自己参考的链接如下:
1.chrome浏览器下的xdebug helper使用方法
具体操作如下:
一、首先在chorme浏览器中下载xdebug helper,去google网上应用商城下载。
安装好后如下图:
二、进入window->Preferences->PHP->Debug
找到配置xdebug中的Accept remote session(JIT),选择为localhost,并保存。
操作下图所示:
三、最后配置php.ini
在php.ini中搜索XDEBUG,会找到的相应的配置位置(eclipse2020已经自带了)
然后修改相应的配置如下:
; XDEBUG Extension
[xdebug]
zend_extension ="d:/wamp64/bin/php/php5.6.40/zend_ext/php_xdebug-2.5.5-5.6-vc11-x86_64.dll"
xdebug.profiler_enable = on
xdebug.trace_output_dir="d:/wamp64/tmp" ;xdebug 的数据文件目录
xdebug.profiler_output_dir ="d:/wamp64/tmp" ;xdebug 的数据文件目录
xdebug.auto_trace = On ;开启自动跟踪
xdebug.show_exception_trace = On ;开启异常跟踪
xdebug.remote_autostart = Off ;开启远程调试自动启动
xdebug.remote_enable = on;开启远程调试
xdebug.remote_handler=dbgp ;用于zend studio远程调试的应用层通信协议
xdebug.remote_host=127.0.0.1 ;允许连接的zend studio的IP地址
xdebug.remote_port=9000 ;反向连接zend studio使用的端口
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.collect_vars = On ;收集变量
xdebug.collect_return = On ;收集返回值
xdebug.collect_params = On ;收集参数
xdebugbug.max_nesting_level = 10000 ;如果设得太小,函数中有递归调用自身次数太多时会报超过最大嵌套数错
完成后调试,成功!!!
作者:Cboii
本博客所有文章仅用于学习、研究和交流目的,欢迎非商业性质转载。
由于博主的水平不高,不足和错误之处在所难免,希望大家能够批评指出。
在wordpress安装、主题、插件以及开发上面有问题的,可以加入qq群:1140958614(Wp建站每日学习/交流群)进行学习和提问
如果需要建站服务,可以直接联系我的qq:185369045