gpt4 book ai didi

php - 捕获从 PHP 函数返回的数据的最佳方法是什么?

转载 作者:行者123 更新时间:2023-12-02 05:29:40 24 4
gpt4 key购买 nike

我刚开始使用 Wordpress 进行编程和学习。

the_title(); //outputs the title of the page

我想将页面标题捕获到一个字符串变量中,以便我可以使用 strtolowerstr_replace 函数对其进行操作。

我让它工作的唯一方法是使用输出缓冲。

ob_start();
the_title();
$result = ob_get_clean();

echo str_replace(" ","-",strtolower($result));

/*there has got to be an easier way....
i dont fully understand why */

str_replace(" ","-",strtolower(the_title()));

我做错了什么?

最佳答案

如果您真正要寻找的是 wp_title 函数,那么它采用的第二个参数是一个 bool 值,决定是否应该显示它或返回它。将其传递为 false,以便它将其返回给 var,然后您可以这样做:

$mytitle = wp_title(null, false);

否则,您唯一的选择就是找到您要查找的函数并修改源代码。

关于php - 捕获从 PHP 函数返回的数据的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/692904/

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