Smarty 图标

您可以根据商标须知使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他咨询,请通过以下方式联系我们

使用 Smarty 的网站

广告

strip

用一个空格或者指定的字符串替换所有空格、换行符和制表符。

注意

如果要删除模板文本中的块,请使用内置的 {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:'&nbsp;'}

   

输出的是

Grandmother of
eight makes        hole in one.
Grandmother of eight makes hole in one.
Grandmother&nbsp;of&nbsp;eight&nbsp;makes&nbsp;hole&nbsp;in&nbsp;one.

   

另请参见 {strip}truncate