給定一個像這樣的字串...
$htmlPattern = "User name is: #name# and user company is #company#";
如何將子字串 #name
# 和 #company
# 替換為變數中的元素?
例如,如果$name
是"John"
且$company
是Microsoft
,我如何產生字串 User name is: John 與使用者公司是:Microsoft
?
P粉0290579282024-04-07 11:53:08
您可以在彼此內部使用多個 str_replace,如下所示:
User name is: #name# and user company is #company#
P粉3116177632024-04-07 11:21:21
更改數組,使鍵周圍包含 #。然後您可以將其用作
strtr() 的替换参数代码>
.
$myArr = [ ["#name#" => "John", "#company#" => "Microsoft"], ["#name#" => "Erica", "#company#" => "Apple"] ]; foreach ($myArr as $row) { $emptyHtml .= strtr($htmlPattern, $row) }