php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #50118 htmlspecialchars parsing HTML5+XML
Submitted: 2009-11-09 08:32 UTC Modified: 2009-11-09 15:19 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:0 (0.0%)
From: floder at gmail dot com Assigned:
Status: Not a bug Package: DOM XML related
PHP Version: 5.3.1RC3 OS: all
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: floder at gmail dot com
New email:
PHP Version: OS:

 

 [2009-11-09 08:32 UTC] floder at gmail dot com
Description:
------------
Problem with htmlspecialchars PHP function.
In HTML5 are allowed only numeric entities. 
In XML parsing mode browser interrupts errors. 

Reproduce code:
---------------
<=htmlspecialchars('&')>

Expected result:
----------------
??'&' (ampersand) becomes '&#38;' 
??'"' (double quote) becomes '&#34;' 
??''' (single quote) becomes '&#39;' 
??'<' (less than) becomes '&#60;' 
??'>' (greater than) becomes '&#62;' 

Actual result:
--------------
??'&' (ampersand) becomes '&amp;' 
??'"' (double quote) becomes '&quot;'
??''' (single quote) becomes '&#039;'
??'<' (less than) becomes '&lt;' 
??'>' (greater than) becomes '&gt;' 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-11-09 15:19 UTC] scottmac@php.net
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. 

Thank you for your interest in PHP.

Duplicate of bug #50106
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed May 01 19:01:31 2024 UTC