作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将文本存储在我的数据库中。这是以下文本:
".$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/
我是一名优秀的程序员,十分优秀!