replace 替换

优质
小牛编辑
131浏览
2023-12-01

Parameter Position参数位置Type参数类型Required必需Default默认Description
1stringYesn/aThis is the string of text to be replaced.
将被替换的文本字串
2stringYesn/aThis is the string of text to replace with.
用来替换的文本字串

A simple search and replace on a variable.
简单的搜索和替换字符串

Example 5-16. replace
例 5-16.替换

index.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Child's Stool Great for Use in Garden.");
$smarty->display('index.tpl');
index.tpl:
{$articleTitle}
{$articleTitle|replace:"Garden":"Vineyard"}
{$articleTitle|replace:" ":" "}
OUTPUT:
Child's Stool Great for Use in Garden.
Child's Stool Great for Use in Vineyard.
Child's Stool Great for Use in Garden.