smarty:字符串连接 cat
示例:
index.php:
$smarty = new Smarty;
$smarty->assign(‘aTitle’, “Psychics predict world didn’t end”);
$smarty->display(‘index.tpl’);index.tpl:
{$aTitle|cat:” yesterday.”|cat:” go on.”}
OUTPUT:
Psychics predict world didn’t end yesterday. go on.