阅读(4746) (1)

Smarty:strip_tags

2016-10-12 15:45:30 更新

strip_tags

去除标记等任何包含在< 和 >中间的字符。.

参数顺序类型必选参数默认值说明
1boolNoTRUE设置是否将标签替换成' ' 或者 ''

Example 5.20. strip_tags

<?php

$smarty->assign('articleTitle',
                "Blind Woman Gets <font face=\"helvetica\">New
Kidney</font> from Dad she Hasn't Seen in <b>years</b>."
               );

?>

模板:

{$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.

参见 replace 和 regex_replace.