strip_tags

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

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


Example 5.20. strip_tags

  1. <?php
  2.  
  3. $smarty->assign('articleTitle',
  4. "Blind Woman Gets <font face=\"helvetica\">New
  5. Kidney</font> from Dad she Hasn't Seen in <b>years</b>."
  6. );
  7.  
  8. ?>
  9.  

模板:

  1. {$articleTitle}
  2. {$articleTitle|strip_tags} {* same as {$articleTitle|strip_tags:true} *}
  3. {$articleTitle|strip_tags:false}
  4.  

输出:

  1. Blind Woman Gets <font face="helvetica">New Kidney</font> from Dad she Hasn't Seen in <b>years</b>.
  2. Blind Woman Gets New Kidney from Dad she Hasn't Seen in years .
  3. Blind Woman Gets New Kidney from Dad she Hasn't Seen in years.
  4.  

参见 replaceregex_replace.

原文: https://www.smarty.net/docs/zh_CN/language.modifier.strip.tags.tpl