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:
Tutti i caratteri di interruzione di linea verranno convertiti in tag <br /> nella variabile data. E' equivalente alla funzione PHP nl2br().
Example 5.13. nl2br
<?php $smarty = new Smarty; $smarty->assign('articleTitle', "Sun or rain expected\ntoday, dark tonight"); $smarty->display('index.tpl'); ?>
Dove index.tpl è:
{$articleTitle|nl2br}
Questo stamperà:
Sun or rain expected<br />today, dark tonight