Smarty 是什么?
为什么要使用它?
用例和工作流
语法比较
模板继承
最佳实践
速成教程
用一个空格或者指定的字符串替换所有空格、换行符和制表符。
如果要删除模板文本中的块,请使用内置的 {strip}
函数。
示例 5.19 strip
<?php $smarty->assign('articleTitle', "Grandmother of\neight makes\t hole in one."); $smarty->display('index.tpl'); ?>
在模板中
{$articleTitle} {$articleTitle|strip} {$articleTitle|strip:' '}
输出的是
Grandmother of eight makes hole in one. Grandmother of eight makes hole in one. Grandmother of eight makes hole in one.