首页 > 代码库 > nl2br()

nl2br()

nl2br() 函数在字符串中的每个新行 (\n) 之前插入 HTML 换行符 (<br />)。

语法

nl2br(string)
参数描述
string必需。规定要检查的字符串。

例子

<?phpecho nl2br("One line.\nAnother line.");?>

输出:

One line.Another line.

HTML 代码:

One line.<br />Another line.

nl2br()