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:
Todos los saltos de linea seran convertidos a etiquetas <br /> como datos de la variable. Esto equivale a la función nl2br() de PHP.
Example 5.13. nl2br
<?php $smarty->assign('articleTitle', "Sun or rain expected\ntoday, dark tonight" ); ?>
Donde el template es:
{$articleTitle|nl2br}
esta debe ser la salida:
Sun or rain expected<br />today, dark tonight
Ver también word_wrap, count_paragraphs y count_sentences.