nl2br()定義和用法
nl2br() 函數在字符串中的每個新行 (\n) 之前插入 HTML 換行符 (<br />)。
語法
nl2br(string)參數 描述
string 必需。規定要檢查的字符串。
例子
復制代碼 代碼如下:
<?php
echo nl2br("One line.\nAnother line.");
?>
輸出:
One line.
Another line.HTML 代碼:
One line.<br />
Another line.