php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10156 nl2br doesn't ad XHTML slash
Submitted: 2001-04-04 07:13 UTC Modified: 2001-07-04 13:57 UTC
From: kynaston at yahoo dot com Assigned:
Status: Closed Package: Output Control
PHP Version: 4.0.4pl1 OS: Red Hat 7.0 (x86)
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: kynaston at yahoo dot com
New email:
PHP Version: OS:

 

 [2001-04-04 07:13 UTC] kynaston at yahoo dot com
It seems that contrary to the docs, nl2br doesn't replace returns with <br/>, only with <br>.

Give it a try with:
print htmlspecialchars(nl2br("line1 \n line2 \n line3"));

If you're looking for XHTML compliance, use:

function nl2br_xhtml($text) {
	return str_replace("<br>", "<br />", nl2br($text));
}

rgds,

Matt

My config command:
'./configure' '--prefix=/usr' '--with-config-file-path=/etc' '--disable-debug' '--enable-pic' '--enable-shared' '--enable-inline-optimization' '--with-apxs=/usr/sbin/apxs' '--with-exec-dir=/usr/bin' '--with-regex=system' '--with-gettext' '--with-gd' '--with-jpeg-dir=/usr' '--with-png' '--with-zlib' '--with-db2' '--with-db3' '--with-gdbm' '--enable-debugger' '--enable-magic-quotes' '--enable-safe-mode' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-track-vars' '--enable-yp' '--enable-ftp' '--enable-wddx' '--without-mysql' '--without-oracle' '--without-oci8' '--with-xml'

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-04-04 07:23 UTC] derick@php.net
It will be in 4.0.5, the docs are ahead of releases this time.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 01:01:30 2024 UTC