用 HTML 代码(从数组生成)替换字符串的顶级方法
P粉596161915
P粉596161915 2024-04-06 17:40:41
0
2
659

给定一个像这样的字符串...

$htmlPattern = "User name is: #name# and user company is #company#";

如何将子字符串 #name# 和 #company# 替换为变量中的元素?

例如,如果 $name"John"$companyMicrosoft,我如何生成字符串 User name is: John 和用户公司是:Microsoft

P粉596161915
P粉596161915

全部回复(2)
P粉029057928

您可以在彼此内部使用多个 str_replace,如下所示:

User name is: #name# and user company is #company#";
 
$res = str_replace("#name#",$name,str_replace("#company#",$company,$htmlPattern));

print($res);


?>
P粉311617763

更改数组,使键周围包含 #。然后您可以将其用作 strtr() 的替换参数代码>.

$myArr = [
    ["#name#" => "John", "#company#" => "Microsoft"],
    ["#name#" => "Erica", "#company#" => "Apple"]
];

foreach ($myArr as $row) {
    $emptyHtml  .= strtr($htmlPattern, $row)
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板