超越PHP PHP动态 | 经典文章 | CLASS | 相关下载 | 常见问题 | FORUM | WIKI | 在线手册
Site search:    
<nl_langinfonumber_format>
Last updated: Fri, 22 Jun 2007

nl2br

(PHP 3, PHP 4 , PHP 5)

nl2br --  Inserts HTML line breaks before all newlines in a string

Description

string nl2br ( string string)

Returns string with '<br />' inserted before all newlines.

注: Starting with PHP 4.0.5, nl2br() is now XHTML compliant. All versions before 4.0.5 will return string with '<br>' inserted before newlines instead of '<br />'.

例子 1. using nl2br()

<?php
echo nl2br("foo isn't\n bar");
?>

this will output :

foo isn't<br />
 bar

See also htmlspecialchars(), htmlentities(), wordwrap(), and str_replace().




add a note add a note User Contributed Notes
nl2br
davidbullock at tech-center dot com
23-Nov-1999 03:06
If you use nl2br in conjunction with htmlspecialchars, you should process the string with nl2br after htmlspecialchars to prevent htmlspecialchars from escaping your newly generated
symbols.

<nl_langinfonumber_format>
 Last updated: Fri, 22 Jun 2007
view source | feedback | send page | sitemap | aboutus   
Copyright ® 2002-2003 PHPE.NET. All rights reserved
Last updated:2002-11-22