Php/func string nl2br
来自菜鸟教程
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兼容的换行符:
|
技术细节
返回值: | 返回转换后的字符串 |
PHP版本: | 4+ |
更新日志: | The
xhtml
参数已在PHP 5.3中添加。 |
更多例子
例
使用xhtml参数在出现换行符(\ n)的地方插入换行符:
<?php echo nl2br("One line.\nAnother line.",false); ?>
上面代码的浏览器输出将是:
One line. Another line.
上面代码的HTML输出为(查看源代码):
One line.<br> Another line.