目录

PHP nl2br() 函数

❮ PHP 字符串参考

示例

在字符串中出现换行符 (\n) 的位置插入换行符:

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

上述代码的浏览器输出将是:

One line.
Another line.

上述代码的 HTML 输出将是(查看源代码):

One line.<br />
Another line.
亲自试一试 »

定义和用法

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


语法

nl2br( string,xhtml)

参数值

Parameter Description
string Required. Specifies the string to check
xhtml  Optional. A boolean value that indicates whether or not to use XHTML compatible line breaks:
  • TRUE- Default. Inserts <br />
  • FALSE - Inserts <br>


技术细节

返回值: 返回转换后的字符串
PHP 版本: 4+
变更日志: 这个htmlPHP 5.3 中添加了参数。
PHP 4.0.5之前,它插入了<br>。 PHP 4.0.5 之后会插入 <br />。

更多示例

示例

使用 xhtml 参数在出现换行符 (\n) 的位置插入换行符:

<?php
echo nl2br("One line.\nAnother line.",false);
?>

上述代码的浏览器输出将是:

One line.
Another line.

上述代码的 HTML 输出将是(查看源代码):

One line.<br>
Another line.
亲自试一试 »

❮ PHP 字符串参考