nl2br() 函數在字符串中的每個新行(\n)之前插入 HTML 換行符(<br> 或 <br />)。
nl2br(string,xhtml)
可選。布爾值,表示是否使用兼容 XHTML 換行:
在字符串中的新行(\n)之前插入換行符:
<?php echo nl2br("One line.\nAnother line."); ?>
以上代碼的浏覽器輸出:
One line. Another line.
以上代碼的 HTML 輸入(查看源代碼):
One line.<br /> Another line.
通過使用 xhtml 參數,在新行(\n)之前插入換行符:
<?php echo nl2br("One line.\nAnother line.",false); ?>以上代碼的浏覽器輸出:
One line. Another line.以上代碼的 HTML 輸入(查看源代碼):
One line.<br> Another line. *