PHP nl2br() 函数 PHP nl_langinfo() 函数 PHP number_format() 函数 PHP nl2br() 函数 实例 在字符串中的新行(\n)之前插入换行符: <?php echo nl2br("One line.\nAnother line."); ?> 上面代码的浏览器输出如下: One line. Another line. 上面代码的 HTML 输入如下(查看源代码): One line.<br /> Another line. 定义和用法 nl2br() 函数在字符串中的每个新行(\n)之前插入 HTML 换行符( 或 )。 语法 nl2br( _string,xhtml_ ) 参数 描述 _string_ 必需。规定要检查的字符串。 _xhtml_ 可选。一个表示是否使用兼容 XHTML 换行的布尔值: * TRUE- 默认。插入 * FALSE - 插入 技术细节 返回值: 返回已转换的字符串。 PHP 版本: 4+ 更新日志: 在 PHP 4.0.5 之前,该函数插入 。在 PHP 4.0.5 之后,该函数插入兼容 XHTML 的 。 在 PHP 5.3 中,新增了 _xhtml_ 参数。 实例 1 通过使用 xhtml 参数,在新行(\n)之前插入换行符: <?php echo nl2br("One line.\nAnother line.",false); ?> 上面代码的浏览器输出如下: One line. Another line. 上面代码的 HTML 输入如下(查看源代码): One line.<br> Another line. PHP nl_langinfo() 函数 PHP number_format() 函数