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:
Konvertiert alle Zeilenschaltungen in <br /> Tags. Genau wie die PHP Funktion nl2br.
Example 5.14. nl2br
<?php $smarty = new Smarty; $smarty->assign('articleTitle', "Sonne oder Regen erwartet,\nnachts dunkel."); $smarty->display('index.tpl'); ?>
Wobei index.tpl wie folgt aussieht:
{$articleTitle|nl2br}
Ausgabe:
Sonne oder Regen erwartet,<br />nachts dunkel.