ID: 30875
Updated by: [EMAIL PROTECTED]
-Summary: xml_parse_into_struct does not resolve entities in
element content
Reported By: joern_h at gmx dot net
-Status: Open
+Status: Analyzed
-Bug Type: XML related
+Bug Type: Feature/Change Request
Operating System: *
PHP Version: 4CVS, 5CVS (2005-02-03)
New Comment:
After some investigating of the issue: ext/xml just misses this
functionality. No bug but feature request -> reclassified.
Previous Comments:
------------------------------------------------------------------------
[2005-02-03 14:59:37] joern_h at gmx dot net
This bug still occurs with current PHP4 (Feb 3 2005 06:13:06) and PHP5
(Feb 3 2005 12:17:00) snapshots.
------------------------------------------------------------------------
[2005-02-03 04:41:34] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php4-STABLE-latest.tar.gz
For Windows:
http://snaps.php.net/win32/php4-win32-STABLE-latest.zip
------------------------------------------------------------------------
[2004-11-24 00:11:27] joern_h at gmx dot net
Description:
------------
When using xml_parse_into_struct, entities from the internal dtd are
not resolved in element content. Entities in attribute values are
resolved properly. This bug is present in PHP 4.3.8 and PHP5 (cvs from
2004-11-22).
Reproduce code:
---------------
<?php
$xml = <<<HERE
<!DOCTYPE test [
<!ENTITY test "test">
]>
<test>&test;</test>
HERE;
$parser =& xml_parser_create();
xml_parse_into_struct($parser, $xml, $vals, $idx);
print_r($vals);
xml_parser_free($parser);
?>
Expected result:
----------------
Array
(
[0] => Array
(
[tag] => TEST
[type] => complete
[level] => 1
[value] => test
)
)
Actual result:
--------------
Array
(
[0] => Array
(
[tag] => TEST
[type] => complete
[level] => 1
)
)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=30875&edit=1