php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11347 nl2br works not correctly
Submitted: 2001-06-08 02:05 UTC Modified: 2001-06-08 14:09 UTC
From: bate at bate dot de Assigned:
Status: Not a bug Package: Strings related
PHP Version: 4.0.5 OS: Linux/FreeBSD
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: bate at bate dot de
New email:
PHP Version: OS:

 

 [2001-06-08 02:05 UTC] bate at bate dot de
The function nl2br
works not correct:

$string="Testline1\nTestline2";
echo nl2br($string);

output:
Testlin1
<br />
Testlin2

the <br> are wrong.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-06-08 02:48 UTC] bate at bate dot de
I checked the Source and found the Problem:

./ext/standart/
-> string.c
Line 2512:
php_char_to_str((*str)->value.str.val,(*str)->value.str.len,'\n',"<br />\n",7,return_value);

Correct this please to
Line 2512:
php_char_to_str((*str)->value.str.val,(*str)->value.str.len,'\n',"<br>\n",7,return_value);


 [2001-06-08 14:09 UTC] sniper@php.net
This is not bug. nl2br() is now xHTML compliant.

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 17:01:29 2024 UTC