PHP - 发送当前输出缓冲区

发布于 2024-11-28 05:37:30 字数 414 浏览 1 评论 0原文

我正在制作一个 PHP IRC 机器人,它运行得很好。

不过,我想做的是有一个实时调试选项,这意味着我需要实时查看从操作员发送到机器人的命令。问题是,只要机器人运行,就不会发送任何输出,即使我 echoprintfvar_dump 也是如此。

所以我的问题是,如何强制 PHP 发送当前输出缓冲区而不等待逻辑完成(因为理论上,它永远不会完成:P)

编辑: flush()ob_flush() 似乎不起作用,请参阅这个简单的示例:http://codepad.viper-7.com/ks7zEy

I'm making a PHP IRC Bot, and it works great.

What I want to do though, is to have a live debugging option, which means I need to see the commands sent from an operator to the bot live. The problem is, as long as the bot's running, no output is being sent, even if I echo, printf, or var_dump.

So my question is, how can I force PHP to send the current output buffer without waiting for the logic to finish (because theoretically, it won't finish ever :P)

EDIT:
flush() or ob_flush() doesn't seem to work, see this simple example: http://codepad.viper-7.com/ks7zEy

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

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

发布评论

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

评论(3

感性不性感 2024-12-05 05:37:30

您正在寻找 ob_flush

You're looking for ob_flush

So尛奶瓶 2024-12-05 05:37:30

只需将其放在页面顶部即可:

while( ob_get_level() > 0 ) {
    @ob_end_flush();
}
@ob_implicit_flush();

Just put this at the top of your page:

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