Home  >  Article  >  Backend Development  >  PHP nl2br函数 将换行字符转成 <br>_PHP

PHP nl2br函数 将换行字符转成 <br>_PHP

WBOY
WBOYOriginal
2016-06-01 12:22:381247browse

将换行字符转成

语法 : string nl2br(string string);
返回值 : 字符串
函数种类 : 资料处理
内容说明
本函数将换行字符转换成 HTML 换行的
指令。
复制代码 代码如下:
$str=' 第一行
第二行
第三行 ';
echo $str;// 没有替换的
echo("
-----------------
");
echo nl2br($str);// 替换后显示
?>

// 输出
第一行 第二行 第三行
-----------------
第一行
第二行
第三行
nl2br
将换行字符转成

PHP nl2br()语法: string nl2br(string string);
返回值: 字符串
函数种类: 资料处理
PHP nl2br()内容说明
本函数将换行字符转换成 HTML 换行的
指令。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn