PHPStorm Xdebug 总是在第一行中断
2022-08-30 15:50:28
我已经使用以下配置设置了Xdebug:
[xdebug]
zend_extension="/usr/local/Cellar/php55-xdebug/2.2.5/xdebug.so"
xdebug.remote_enable= "On"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.remote_autostart = "Off"
xdebug.profiler_enable = "On"
xdebug.profiler_output_dir = "/tmp"
xdebug.idekey="PHPSTORM"
并将“远程调试”与Xdebug切换器插件一起使用。
但是在PHPStorm中,它总是在第一行中断,即使我在那里没有设置断点。我已经查看了的设置,并找到了与此相关的设置。但是我已经取消了这些检查。但即使在重新启动后,它仍然在第一个文件的第一行中断。
如何禁用此行为?