PHP Echo 语句不显示在带有 XDebug 的 Eclipse 的浏览器输出中?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 php.ini 中编辑以下行解决了我的问题:
Editing the following lines in php.ini solved the issue for me:
添加 ob_get_contents() Eclipse 表达式,您将看到缓冲区!
Add the ob_get_contents() Eclipse expression, you will see the buffer!
也许它正在缓冲输出?
尝试过flush()吗?
http://php.net/manual/en/function.flush.php
maybe it's buffering output?
tried flush() ?
http://php.net/manual/en/function.flush.php