Smarty:cat
cat
连接多个变量。
| 参数顺序 | 类型 | 必选参数 | 默认值 | 说明 |
|---|---|---|---|---|
| 1 | string | No | 空 | 需要连接的变量 |
Example 5.3. cat
<?php
$smarty->assign('articleTitle', "Psychics predict world didn't end");
?>
模板是:
{$articleTitle|cat:' yesterday.'}
输出:
Psychics predict world didn't end yesterday.