84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
給定一個像這樣的字串...
$htmlPattern = "User name is: #name# and user company is #company#";
如何將子字串 #name# 和 #company# 替換為變數中的元素?
#name
#company
例如,如果$name 是"John" 且$company 是Microsoft,我如何產生字串 User name is: John 與使用者公司是:Microsoft?
$name
"John"
$company
Microsoft
User name is: John 與使用者公司是:Microsoft
您可以在彼此內部使用多個 str_replace,如下所示:
User name is: #name# and user company is #company#"; $res = str_replace("#name#",$name,str_replace("#company#",$company,$htmlPattern)); print($res); ?>
更改數組,使鍵周圍包含 #。然後您可以將其用作 strtr() 的替换参数代码>.
strtr() 的替换参数代码>
$myArr = [ ["#name#" => "John", "#company#" => "Microsoft"], ["#name#" => "Erica", "#company#" => "Apple"] ]; foreach ($myArr as $row) { $emptyHtml .= strtr($htmlPattern, $row) }
您可以在彼此內部使用多個 str_replace,如下所示:
更改數組,使鍵周圍包含
#。然後您可以將其用作
strtr() 的替换参数代码>
.