cat[连接字符串]
cat(将cat里的值连接到给定的变量后面)
test.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Psychics predict world didn't end");
$smarty->display('test.html');
test.html:
{$articleTitle|cat:" yesterday."}
输出:
Psychics predict world didn't end yesterday.