Smarty 图标

您可以根据 商标声明 使用 Smarty 的标识。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他咨询,请发送电子邮件至

使用 Smarty 的网站

广告

cat

此值将与给定变量连接。

参数位置 类型 必需 默认值 描述
1 字符串 将连接到给定变量的值。

示例 5.3. cat

<?php

$smarty->assign('articleTitle', "Psychics predict world didn't end");

?>

   

如果模板是这样的

{$articleTitle|cat:' yesterday.'}

   

将输出

Psychics predict world didn't end yesterday.