如何将 echo() 的结果捕获到 PHP 中的变量中?

发布于 2024-09-30 06:46:57 字数 92 浏览 8 评论 0原文

我正在使用一个 PHP 库来回显结果而不是返回结果。有没有一种简单的方法来捕获 echo/print 的输出并将其存储在变量中? (其他文本已输出,并且未使用输出缓冲。)

I'm using a PHP library that echoes a result rather than returns it. Is there an easy way to capture the output from echo/print and store it in a variable? (Other text has already been output, and output buffering is not being used.)

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

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

发布评论

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

评论(4

丢了幸福的猪 2024-10-07 06:46:57

可以使用输出缓冲:

ob_start();

function test ($var) {
    echo $var;
}

test("hello");
$content = ob_get_clean();

var_dump($content); // string(5) "hello"

但这不是一个干净且有趣的语法。找到一个更好的图书馆可能是个好主意......

You could use output buffering :

ob_start();

function test ($var) {
    echo $var;
}

test("hello");
$content = ob_get_clean();

var_dump($content); // string(5) "hello"

But it's not a clean and fun syntax to use. It may be a good idea to find a better library...

溺渁∝ 2024-10-07 06:46:57

我知道的唯一方法。

ob_start();
echo "Some String";
$var = ob_get_clean();

The only way I know.

ob_start();
echo "Some String";
$var = ob_get_clean();
静赏你的温柔 2024-10-07 06:46:57

如果可以的话,你真的应该重写这个类。我怀疑找到 echo/print 语句并用 $output .= 替换它们会那么困难。使用 ob_xxx 确实需要资源。

You should really rewrite the class if you can. I doubt it would be that hard to find the echo/print statements and replace them with $output .=. Using ob_xxx does take resources.

眼泪都笑了 2024-10-07 06:46:57

在应用程序完全完成之前不要回显数据始终是一个好的做法,例如

<?php
echo 'Start';

session_start();
?>

现在 session_start 以及另一串函数将无法工作,因为已经有数据作为响应输出,但通过执行以下操作:

<?php
$output = 'Start';

session_start();

echo $output;
?>

这可行且不易出错,但如果您必须捕获输出,那么您会这样做:

ob_start();

//Whatever you want here

$data = ob_get_contents();

//Then we clean out that buffer with:
ob_end_clean();

Its always good practise not to echo data until your application as fully completed, for example

<?php
echo 'Start';

session_start();
?>

now session_start along with another string of functions would not work as there's already been data outputted as the response, but by doing the following:

<?php
$output = 'Start';

session_start();

echo $output;
?>

This would work and its less error prone, but if its a must that you need to capture output then you would do:

ob_start();

//Whatever you want here

$data = ob_get_contents();

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