在字符串中出现换行符 (\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:
|
返回值: | 返回转换后的字符串 |
---|---|
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.
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!