strip

Заменяет все повторяющиеся пробелы, переводы строк и символы табуляции одним пробелом (или другой указанной строкой).

Обратите внимание

Если вы хотите обработать блоки текста в шаблоне аналогичным образом, воспользуйтесь функцией {strip}.

Example 5.18. strip


<?php

$smarty->assign('articleTitle', "Grandmother of\neight makes\t    hole in one.");

?>

   

Шаблон:


{$articleTitle}
{$articleTitle|strip}
{$articleTitle|strip:'&nbsp;'}

   

Результат обработки:


Grandmother of
eight makes        hole in one.
Grandmother of eight makes hole in one.
Grandmother&nbsp;of&nbsp;eight&nbsp;makes&nbsp;hole&nbsp;in&nbsp;one.

   

См. также {strip} и truncate.