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

继续学习
||
<?php echo "nl2br[换行符替换成<br /> ]";
提交重置代码