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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。