nl2br[換行符號替換成<br /> ]
nl2br[換行符號替換成<br /> ]
#test.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Sun or rain expected\ntoday, dark tonight");
$smarty->display('test.html');
test.html:
{$articleTitle|nl2br}
#輸出:
Sun or rain expected<br />today, dark tonight