codecamp

Smarty:nl2br

nl2br

将变量值中的"\n"回车全部转换成HTML的 <br />。 等同于PHP的 nl2br()函数。

Example 5.14. nl2br

<?php

$smarty->assign('articleTitle',
                "Sun or rain expected\ntoday, dark tonight"
                );
?>

模板:

{$articleTitle|nl2br}

输出:

Sun or rain expected<br />today, dark tonight

Smarty:lower
Smarty:regex_replace
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定