去除标记等任何包含在< 和 >中间的字符。.
| 参数顺序 | 类型 | 必选参数 | 默认值 | 说明 |
|---|---|---|---|---|
| 1 | bool | No | TRUE |
设置是否将标签替换成' ' 或者 '' |
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.