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 é usado para converter para minúsculas uma variável.
Example 5.13. lower
index.php: $smarty = new Smarty; $smarty->assign('articleTitle', 'Two Convicts Evade Noose, Jury Hung.'); $smarty->display('index.tpl'); index.tpl: {$articleTitle} {$articleTitle|lower} MOSTRA: Two Convicts Evade Noose, Jury Hung. two convicts evade noose, jury hung.