Home > Backend Development > PHP Tutorial > PHP怎么将文本框中的换行改为br换行?

PHP怎么将文本框中的换行改为br换行?

PHPz
Release: 2020-09-05 09:59:57
Original
5807 people have browsed it

在PHP中可以使用“nl2br()”函数将文本框中的换行改为“
”来换行,其语法是“nl2br("One line.\nAnother line.");”,表示在字符串中的新行之前插入换行符。

PHP怎么将文本框中的换行改为br换行?

PHP怎么将文本框中的换行改为br换行符?

在PHP中,可以使用nl2br()函数将文本框中的换行改为利用HTML页面的换行标签
来换行。

nl2br() 函数在字符串中的每个新行(\n)之前插入 HTML 换行符(

)。

语法

nl2br(string,xhtml)
Copy after login

1.png

示例:在字符串中的新行(\n)之前插入换行符

<?php
echo nl2br("One line.\nAnother line.");
?>
Copy after login

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

One line.
Another line.
Copy after login

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

One line.<br />
Another line.
Copy after login

更多相关知识,请访问 PHP中文网!!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template