gpt4 book ai didi

PHP:当变量(b)包含文本时如何在另一个变量(b)中显示变量(a)

转载 作者:行者123 更新时间:2023-11-29 04:54:09 25 4
gpt4 key购买 nike

我将文本存储在我的数据库中。这是以下文本:

".$teamName.", is the name of a recently formed company hoping to take over the lucrative hairdryer design ".$sector."

查询数据库后,我将此文本分配给名为 $news 的变量,然后回显它。

但是,文本输出到屏幕的方式与上面完全相同,变量 $teamName*$sector 没有被相应的值替换。

我向您保证,$teamName$sector 在我查询数据库之前就已定义。

我什至可以做我想做的事吗?

最佳答案

您最好使用 sprintf()在这里。

$string = "%s is the name of a recently formed company hoping to take over the lucrative hairdryer design %s.";

$teamName = "My Company";
$sector = "sector";

echo sprintf($string, $teamName, $sector);
// My Company is the name of a recently formed company hoping to take over the lucrative hairdryer design sector.

在您的数据库中,您存储$string。使用 sprintf() 替换变量值。

关于PHP:当变量(b)包含文本时如何在另一个变量(b)中显示变量(a),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8329454/

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