PHP ob_start() 问题

发布于 2024-09-29 18:31:44 字数 108 浏览 5 评论 0原文

我是否允许在我的 php 文件中包含两个或多个 ob_start(); 如果可以的话,结束一个 ob_start(); 并启动另一个的正确方法是什么?

Am I allowed to have two or more ob_start(); in my php files if so what is the proper way to end one ob_start(); and start another?

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

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

发布评论

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

评论(2

幽蝶幻影 2024-10-06 18:31:44

从手册:

输出缓冲区是可堆叠的,即
你可以调用 ob_start() 而另一个
ob_start() 处于活动状态。只要确保
您调用 ob_end_flush() 的
适当的次数。如果
多个输出回调函数是
活动,输出正在被过滤
依次通过它们中的每一个
嵌套顺序。

除了堆叠(嵌套)之外,您还可以按顺序拥有单独的块。

<?
ob_start();
echo "Foo";
ob_end_flush(); // outputs buffer contents and turns off output buffering

ob_start();
echo "Bar";
ob_end_flush();
?>

From the manual:

Output buffers are stackable, that is,
you may call ob_start() while another
ob_start() is active. Just make sure
that you call ob_end_flush() the
appropriate number of times. If
multiple output callback functions are
active, output is being filtered
sequentially through each of them in
nesting order.

In addition to stacking (nesting), you can have separate blocks in sequence.

<?
ob_start();
echo "Foo";
ob_end_flush(); // outputs buffer contents and turns off output buffering

ob_start();
echo "Bar";
ob_end_flush();
?>
鹿童谣 2024-10-06 18:31:44

您可以在一页上执行多个 ob_start() 操作。您可以用 ob_end_clean() 结束 ob_start()。

ob_start();
$postOutput = preg_replace('/<img[^>]+./','', ob_get_contents());
ob_end_clean();
echo $postOutput;

You are allowed to do more than one ob_start() on a page. You end ob_start() with ob_end_clean().

ob_start();
$postOutput = preg_replace('/<img[^>]+./','', ob_get_contents());
ob_end_clean();
echo $postOutput;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文