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:
Isto substitui todos os espaços repetidos, novas linhas e tabs por um único espaço ou a string indicada.
Se você quer substituir blocos de texto do template, use a função strip.
Example 5.19. strip
index.php: $smarty = new Smarty; $smarty->assign('articleTitle', "Grandmother of\neight makes\t hole in one."); $smarty->display('index.tpl'); index.tpl: {$articleTitle} {$articleTitle|strip} {$articleTitle|strip:" "} MOSTRA: Grandmother of eight makes hole in one. Grandmother of eight makes hole in one. Grandmother of eight makes hole in one.