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
Comments
Post a Comment
