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:
Sostituisce tutte le sequenze di spazi, a capo e tabulatori con un singolo spazio o con la stringa fornita.
Se volete fare lo strip su blocchi di testo del template, usate la funzione strip.
Example 5.18. strip
<?php $smarty = new Smarty; $smarty->assign('articleTitle', "Grandmother of\neight makes\t hole in one."); $smarty->display('index.tpl'); ?>
Dove index.tpl è:
{$articleTitle} {$articleTitle|strip} {$articleTitle|strip:" "}
Questo stamperà:
Grandmother of eight makes hole in one. Grandmother of eight makes hole in one. Grandmother of eight makes hole in one.