用 HTML 程式碼(從陣列產生)取代字串的頂級方法
P粉596161915
P粉596161915 2024-04-06 17:40:41
0
2
533

給定一個像這樣的字串...

$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)
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!