<strong>nl2br()定义和用法</strong> <br>nl2br() 函数在字符串中的每个新行 (\n) 之前插入 HTML 换行符 (<br>)。 <br><br><strong>语法 <br></strong>nl2br(string)参数 描述 <br>string 必需。规定要检查的字符串。 <br><br>例子 <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="89840" class="copybut" id="copybut89840" onclick="doCopy('code89840')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code89840"> <br><?php <BR>echo nl2br("One line.\nAnother line."); <br>?> <br> </div> <br>输出: <br><br>One line. <br>Another line.HTML 代码: <br><br>One line.<br> <br>Another line.