PHP 字符串 nl2br() 是预定义函数,用于在字符串中的所有换行符之前插入 HTML 换行符。它在所有换行符(\r\n、\n\r、\n 和 \r)之前返回带有 <br \> 或 <br> 的字符串。
用法:
nl2br(string,xhtml);
参数 | 描述 | 必需/可选 |
---|---|---|
String | 指定输入字符串 | required |
xhtml | 布尔值,是否使用兼容 XHTML 的换行符。 .True- 默认。插入 <br /> .False -插入 <br> | optional |
例子1
<?php
echo "Your string is:Hello .\ n PHP. \ n Javatpoint"."<br>";
echo "By using 'nl2br()' function:".nl2br(" Hello .\nPHP.\n Javatpoint");
?>
注意:使用 'is_xhtml' 参数生成有效的 HTML 标记。
输出:
Your string is:Hello .\ n PHP. \ n Javatpoint By using 'nl2br()' function:Hello . PHP. Javatpoint
例子2
<?php
echo "Your string is:Welcome \ r\ n We are learning PHP"."<br>";
echo "By using 'nl2br()' Function:".nl2br("\n Welcome\r\nWe are learning PHP", false);
?>
输出:
Your string is:Welcome \ r\ n We are learning PHP By using 'nl2br()' Function: Welcome We are learning PHP
例子3
<?php
$str = "This\r\nis\n\ra\nPHP Tutorial\r";
echo "By using 'nl2br()' Function:".nl2br($str);
?>
输出:
By using 'nl2br()' Function:This is a PHP Tutorial
相关用法
- PHP String nl_langinfo()用法及代码示例
- PHP String wordwrap()用法及代码示例
- PHP String sprintf()用法及代码示例
- PHP String ucwords()用法及代码示例
- PHP String substr()用法及代码示例
- PHP String localeconv()用法及代码示例
- PHP String quoted_printable_encode()用法及代码示例
- PHP String ucfirst()用法及代码示例
- PHP String vsprintf()用法及代码示例
- PHP String strtr()用法及代码示例
- PHP String strtolower()用法及代码示例
- PHP String strspn()用法及代码示例
- PHP String substr_count()用法及代码示例
- PHP String strtoupper()用法及代码示例
- PHP String quoted_printable_decode()用法及代码示例
- PHP String strtok()用法及代码示例
- PHP String vprintf()用法及代码示例
- PHP String substr_replace()用法及代码示例
- PHP String strstr()用法及代码示例
- PHP String str_replace()用法及代码示例
注:本文由纯净天空筛选整理自 PHP String nl2br() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。