PHP、Eclipse/Zend Studio 和使用表达式进行调试
我的 PHP 应用程序中有一个经常更改的变量,我想进行调试,以便它继续执行,直到变量更改为特定值(在本例中为布尔值 true)。我听说这可以用表达式来完成?真的?
I have a variable in my PHP application that changes often, I'd like to debug so that it keeps executing until the variable changes to a specific value (in this case boolean true). I've heard this could be done with expressions? True?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个条件断点。通过单击装订线在编辑器中设置断点。然后右键单击它并在 PHP 中输入条件。
That's a conditional breakpoint. Set breakpoint in editor by clicking on gutter. Then right-click it and type condition in PHP.