【发布时间】:2014-09-17 17:11:39
【问题描述】:
我已经使用以下配置设置了 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 safari 切换器插件的“远程调试”。
但是在 PHPStorm 中它总是在第一行中断,即使我没有在那里设置断点。我查看了设置并找到了与此相关的设置。但我没有选中这些。但即使重新启动后,它仍然会在第一个文件的第一行中断。
如何禁用此行为?
【问题讨论】:
标签: php phpstorm breakpoints xdebug