PHP Echo 语句不显示在带有 XDebug 的 Eclipse 的浏览器输出中?

发布于 2024-11-18 01:30:34 字数 175 浏览 3 评论 0原文

我正在使用 win7-64 和 Eclipse PDT 在 Xampp 上测试 XDebug。我正在调试一个回显语句的简单脚本。我可以跳过这些语句,但内部 Web 浏览器窗口直到整个脚本运行完毕后才会显示这些语句。我尝试在脚本顶部输入 phpinfo() ,它在跨过它后立即在浏览器中正常显示。有没有人遇到过这个问题并且有办法解决它吗?

I am testing XDebug on Xampp using win7-64 with Eclipse PDT. I am debugging a simple script that echoes statements. I can step over these statements, but the internal web browser window doesn't show these statements until after the entire script has finished running. I tried entering phpinfo() at the top of the script and it displays in the browser just fine immediately after stepping over it. Has anyone run across this issue and is there a way to fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

独享拥抱 2024-11-25 01:30:34

php.ini 中编辑以下行解决了我的问题:

implicit_flush = On
output_buffering = 0

Editing the following lines in php.ini solved the issue for me:

implicit_flush = On
output_buffering = 0
摘星┃星的人 2024-11-25 01:30:34

添加 ob_get_contents() Eclipse 表达式,您将看到缓冲区!

Add the ob_get_contents() Eclipse expression, you will see the buffer!

飞烟轻若梦 2024-11-25 01:30:34

也许它正在缓冲输出?
尝试过flush()吗?
http://php.net/manual/en/function.flush.php

maybe it's buffering output?
tried flush() ?
http://php.net/manual/en/function.flush.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文