Smarty: Расширяем возможности strip_tags

smarty

Удаляем из Smarty\libs\plugins\ файл modifiercompiler.strip_tags.php на его место записываем файл modifier.strip_tags.php (обратите внимание, что файлы отличаются в названиях)

В результате получаем расширенный функционал «strip_tags»:

  • {$string|strip_tags} strips all tags and replaces them with a space
  • {$string|strip_tags:false} strips all tags without replacing them with a space
  • {$string|strip_tags:'<b><br>’} strips all tags except b and br tags and replaces them with a space
  • {$string|strip_tags:false:'<b><br>’} strips all tags except b and br tags without replacing them with a space
Вы можете оставить комментарий ниже.