Heim  >  Artikel  >  Backend-Entwicklung  >  PHP怎么将文本框中的换行改为br换行?

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

PHPz
PHPzOriginal
2016-06-20 13:04:195774Durchsuche

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

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

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

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

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

语法

nl2br(string,xhtml)

1.png

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

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

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

One line.
Another line.

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

One line.<br />
Another line.

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn