标签:style color html line htm table php ef
nl2br() 函数在字符串中的每个新行 (\n) 之前插入 HTML 换行符 (<br />)。经常用于在线编辑的内容,以便显示。
用法:nl2br(string)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
<?php
echo nl2br("One line.\nAnother line.")
;
?>
输出:
One line. Another line.
标签:style color html line htm table php ef
原文地址:http://www.cnblogs.com/henairan/p/3895226.html