如何防止 PHP 中的 echo 并捕获它里面的内容?

发布于 2024-11-30 00:56:05 字数 158 浏览 1 评论 0原文

我有一个函数( DoDb::printJsonDG($sql, $db, 1000, 2) ),它回显 json。我必须捕获它,然后在将其发送给用户之前使用 str_replace() 。但是我无法阻止它做回声。我不想更改 printJsonDG 因为它正在其他几个位置使用。

I have a function ( DoDb::printJsonDG($sql, $db, 1000, 2) ) which echos json. I have to catch it and then use str_replace() before it is send to the user. However I cannot stop it from doing echo. I don't want to change printJsonDG because it is being used in several other locations.

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

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

发布评论

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

评论(4

濫情▎り 2024-12-07 00:56:05

您可以使用 ob_start()ob_get_contents() PHP 中的函数。

<?php

ob_start();

echo "Hello ";

$out1 = ob_get_contents();

echo "World";

$out2 = ob_get_contents();

ob_end_clean();

var_dump($out1, $out2);
?>

将输出:

string(6) "Hello "
string(11) "Hello World"

You can use the ob_start() and ob_get_contents() functions in PHP.

<?php

ob_start();

echo "Hello ";

$out1 = ob_get_contents();

echo "World";

$out2 = ob_get_contents();

ob_end_clean();

var_dump($out1, $out2);
?>

Will output :

string(6) "Hello "
string(11) "Hello World"
笑叹一世浮沉 2024-12-07 00:56:05

您可以通过使用输出缓冲函数来做到这一点。

ob_start();

/* do your echoing and what not */ 

$str = ob_get_contents();

/* perform what you need on $str with str_replace */ 

ob_end_clean();

/* echo it out after doing what you had to */

echo $str;

You can do it by using output buffering functions.

ob_start();

/* do your echoing and what not */ 

$str = ob_get_contents();

/* perform what you need on $str with str_replace */ 

ob_end_clean();

/* echo it out after doing what you had to */

echo $str;
旧情勿念 2024-12-07 00:56:05

也许您可以重构 DoDb

class DoDb
{
    public static function getJsonDG( $some, $parameters )
    {
        /*
            original routine from printJsonDG without the print statement
        */

        return $result;
    }

    public static function printJsonDG( $some, $parameters )
    {
        print self::getJsonDG( $some, $parameters );
    }
}

这样您就不必触及应用程序中其他位置的代码。

Perhaps you can refactor DoDb:

class DoDb
{
    public static function getJsonDG( $some, $parameters )
    {
        /*
            original routine from printJsonDG without the print statement
        */

        return $result;
    }

    public static function printJsonDG( $some, $parameters )
    {
        print self::getJsonDG( $some, $parameters );
    }
}

That way you don't have to touch the code elsewhere in you application.

好菇凉咱不稀罕他 2024-12-07 00:56:05

查看 输出缓冲,但我宁愿更改该功能,因为它看起来它将用于两件事。最好简单地返回字符串。

Check out output buffering, but I'd rather change the function now that it seems it'll be used for two things. Simply returning the string would be best.

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