Eclipse PDT 调试 Web 应用程序:在控制台中计算表达式
当使用 Eclipse PDT 和 XDebug 来调试 PHP Web 应用程序时,有没有办法打开一个控制台窗口,允许我输入并查看当前范围内任意表达式的值?
这似乎是调试环境的一个明显元素,我可能会遗漏一些东西,但唯一类似于控制台的东西说“此时没有可以显示的控制台”
When using Eclipse PDT with XDebug to debug a PHP web application, is there any way to open up a console window that will allow me to type in and see the value of arbitrary expressions in the current scope?
This would seem like an obvious element of the debugging environment, and I may be missing something, but the only thing resembling a console says "no consoles to display at this time"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
技巧如下:正常启动 PHP 调试会话,然后当到达断点或单步执行代码时,请按照以下步骤操作:
。可以继续单步执行代码、添加或删除表达式等等。
Here is the trick, start your PHP debugging session as normal and then when you reach a break-point, or while you are stepping through the code, follow these steps:
From that point you can continue stepping through the code, add or remove expressions and so forth.