What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
Удаляет тэги разметки. Грубо говоря, всё, что находится между < и >, включительно.
Позиция параметра | Тип | Обязателен | По умолчанию | Описание |
---|---|---|---|---|
1 | bool | Нет | true | Определяет, будут тэги заменяться на ' ' или на '' |
Example 5.19. 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} {* то же самое, что и {$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.