我在使用带有xdebug的PhpStorm调试php时搜索了很多这个问题,我发现3或4个链接讨论这个问题,但没有一个有用。我的Xdebug的版本是2.2.3,PhpStorm的版本是6.03。除了这一行,我可以逐步调试每一行
$this->link = mysql_connect($this->dbserver, $this->dbuser, $this->dbpass);
PhpStorm 显示此错误:等待带有 ide 键“14841”的传入连接。这是我的 xdebug 配置:
zend_extension="/usr/lib/xdebug.so"
xdebug.remote_autostart=1
xdebug.show_local_vars=1
xdebug.dump.GET=*
xdebug.dump.POST=*
xdebug.dump.SERVER=*
xdebug.auto_trace=On
; default trace output directory /tmp
xdebug.collect_vars = On
xdebug.trace_output_dir=/tmp
xdebug.collect_params=4
xdebug.collect_return=On
xdebug.profiler_enable=Off
; default trace output directory /tmp
;xdebug.profiler_output_dir=/tmp
;xdebug.profiler_enable_trigger=On
;test.php?XDEBUG_PROFILE
xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.remote_port=9001
xdebug.remote_handler="dbgp"
xdebug.remote_log = "/tmp"
xdebug.remote_connect_back=1
xdebug.idekey=PHPStorm
我添加了这些行“xdebug.remote_connect_back=1 xdebug.idekey=PHPStorm”,也抵制了 ide,它仍然是一样的,我保证三个参数是正确的。