PHP中创建换行符

如何在PHP中创建换行符? 为了创建换行符,PHP提供了nl2br()函数。它是PHP的内置函数,用于在字符串…

如何在PHP中创建换行符?

为了创建换行符,PHP提供了nl2br()函数。它是PHP的内置函数,用于在字符串的所有换行符之前插入HTML换行符。虽然,我们也可以在源代码中使用PHP换行符n或rn来创建换行符,但是这些换行符在浏览器中不可见。因此,nl2br()在这里很有用。

nl2br()函数包含这些换行符n或rn,它们共同创建换行符。除了nl2br()函数,还有一个HTML换行标记用于断开字符串。的标记应用双引号引起来,例如“”。

例如

为了用PHP创建换行符,让我们看一些例子。

例子1

让我们举一个例子,借助nl2br()函数创建换行符。

<?php
echo nl2br("New line will start from heren in this stringrn on the browser window");
?>

输出量

在此示例中,我们可以看到nl2br()函数在换行符的字符串包含“n”和“rn”字符。我们可以在下面的输出中看到以下程序的结果。

New line will start from here
in this string
on the browser window

例子2

<?php
echo "One line aftern another line";
echo " One line afterrn another line";
?>

输出量

在上面的示例中,我们可以看到在“n”或“rn”字符之后,字符串不是从新行开始的。仅使用“n”和“rn”不足以在字符串创建换行符,因为整个字符串显示在一行中。

One line after another line One line after another line

注意:在Linux中,字符“ / n”用于写换行符,而在Windows中,字符“ / n”用于写换行符。为了安全起见,请使用“ r n”字符来创建换行符。

例子3

<?php
echo "One line aftern another line";
echo "</br>";
echo "One line afterrn another line";
?>

输出量

在这里,我们使用htmlbreaklinetag“”。

One line after another line
One line after another line

类别:PHP 技巧

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册