phpstorm xdebug& Docker
I am working on WSL2 with PhpStorm, Docker and Xdebug 3.
My line breakpoints are working fine but exception breakpoints don't trigger any break. I have no idea why this fails.
Is any additional configuration required compared to line breakpoints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在此处设置的唯一例外断点是
通知
,而不是其他任何一个。如果要打破所有异常,请使用
*
而不是通知
作为值,或者以其他方式使用您想要捕获的顶级异常的类或接口名称。The only exception breakpoint that you have set up here, is the one for
Notice
, and not for anything else.If you want to break on all exceptions, use
*
instead ofNotice
as value, or otherwise a class or interface name of the top level exception that you want to catch.