Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

nl2br

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