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

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.