gpt4 book ai didi

php - 如何在字符串中包含尚 undefined variable ? PHP

转载 作者:行者123 更新时间:2023-12-02 06:10:32 25 4
gpt4 key购买 nike

为了执行更少的数据库查询和代码的清晰度,我想在字符串中包含一个尚 undefined variable 。稍后在页面中,将声明变量并打印和评估字符串。我该怎么做?

$str="This $variable is delicious";

$array=array("Apple","Pineapple","Strawberry");

foreach($array as $variable)
{
print "$str";
}

最佳答案

您可以使用 printf() (或者 sprintf() 如果你不想回应它):

$str = 'This %s is delicious';

foreach ($array as $variable) {
printf($str, $variable);
}

关于php - 如何在字符串中包含尚 undefined variable ? PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3624092/

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