欢迎访问服务器技术网-www.fuwuqijishu.com

PHP nl2br() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 108次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP nl2br() 函数

PHP String 参考手册

实例

在字符串中的新行(\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)

参数 描述
string 必需。规定要检查的字符串。
xhtml 可选。一个表示是否使用兼容 XHTML 换行的布尔值:

  • TRUE- 默认。插入 <br />
  • FALSE – 插入 <br>

技术细节

返回值: 返回已转换的字符串。
PHP 版本: 4+
更新日志: 在 PHP 4.0.5 之前,该函数插入 <br>。在 PHP
4.0.5 之后,该函数插入兼容 XHTML 的 <br />。

在 PHP 5.3 中,新增了 xhtml 参数。


更多实例

实例 1

通过使用 xhtml 参数,在新行(\n)之前插入换行符:

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

上面代码的浏览器输出如下:

One line.
Another line.

上面代码的 HTML 输入如下(查看源代码):

One line.<br>
Another line.


PHP String 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2122.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900