gpt4 book ai didi

WordPress:将 do_action 的输出保存在变量中

转载 作者:行者123 更新时间:2023-12-02 20:01:39 26 4
gpt4 key购买 nike

我想将 do_action 的输出保存在变量中以便稍后使用。我怎样才能保存这些输出?

最佳答案

使用 ob_start() 、 ob_get_contents() 和 ob_end_clean() 请参阅 PHP 手册下一页的示例 #1 http://php.net/manual/en/function.ob-get-contents.php

第一次看起来很吓人,但效果很好。只要确保每次使用 ob_start() 时始终使用 ob_end_clean()

ob_start(); // start capturing output.
do_action('any_action_you_want');
$save_output_here = ob_get_contents(); // the actions output will now be stored in the variable as a string!
ob_end_clean(); // never forget this or you will keep capturing output.

关于WordPress:将 do_action 的输出保存在变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38723513/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com