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.