如何防止 PHP 中的 echo 并捕获它里面的内容?
我有一个函数( 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
ob_start()
和ob_get_contents()
PHP 中的函数。将输出:
You can use the
ob_start()
andob_get_contents()
functions in PHP.Will output :
您可以通过使用输出缓冲函数来做到这一点。
You can do it by using output buffering functions.
也许您可以重构
DoDb
:这样您就不必触及应用程序中其他位置的代码。
Perhaps you can refactor
DoDb
:That way you don't have to touch the code elsewhere in you application.
查看 输出缓冲,但我宁愿更改该功能,因为它看起来它将用于两件事。最好简单地返回字符串。
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.