PHP中的nl2br()函数

nl2br()函数在字符串中的所有换行符之前插入HTML换行符。换行符通常由以下代码表示-

  • \ n \ r

  • \ r \ n

  • \ n

  • \ r

语法

nl2br(str, xhtml)

参数

  • str- 要检查的字符串

  • xhtml- 一个布尔值,指示是否使用与XHTML兼容的换行符

    • -插入
      。这是默认值。

    • FALSE-插入

返回

nl2br()函数返回转换后的字符串。

示例

以下是一个例子-

<?php
   echo nl2br("This has multiple \nlines\nhere!",false);
?>

输出结果

This has multiple
lines
here!

示例

以下是一个例子-

<?php
   echo nl2br("This is\r\ndemo text!", false);
?>

输出结果

This is
demo text!