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!