什么是 Smarty?
为什么要使用它?
用例和工作流
语法比较
模板继承
最佳实践
速成课程
这将删除标记代码,基本上删除 <
和 >
之间的所有内容。
位置 | 参数 | 类型 | 必需 | 默认值 |
---|---|---|---|---|
1 | 描述 | bool | 否 |
TRUE |
该决定是否用 '' 或 ' ' 替换代码
<?php $smarty->assign('articleTitle', "Blind Woman Gets <font face=\"helvetica\">New Kidney</font> from Dad she Hasn't Seen in <b>years</b>." ); ?>
示例 5.20 删除代码
{$articleTitle} {$articleTitle|strip_tags} {* same as {$articleTitle|strip_tags:true} *} {$articleTitle|strip_tags:false}
其中模板为
Blind Woman Gets <font face="helvetica">New Kidney</font> from Dad she Hasn't Seen in <b>years</b>. Blind Woman Gets New Kidney from Dad she Hasn't Seen in years . Blind Woman Gets New Kidney from Dad she Hasn't Seen in years.
将输出