我正在使用WAMP服务器,我正在使用Windows7操作系统。
; XDEBUG Extension
zend_extension = "c:/wamp/bin/php/php5.5.12/zend_ext/php_xdebug-2.2.5-5.5-vc11.dll"
;
[xdebug]
xdebug.remote_enable = off
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.show_local_vars=0
zend_extension="C:/wamp/bin/php/php5.2.9-1/ext/php_xdebug-2.0.4-5.2.8.dll"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
我已经在php.ini文件中进行了更改,如上所示
答案 0 :(得分:1)
在您的WAMP服务器上配置xdebug(看起来您已经这样做了。)
然后,您需要在Sublime Text 3中使用Package Control来安装Xdebug Client包(使用martomo版本,而不是kindari版本)。如果还没有,可能需要安装Package Control。
以下是一篇更深入的教程:https://www.sitepoint.com/debugging-xdebug-sublime-text-3/