ID: 31873
User updated by: becicka at aarongroup dot cz
Reported By: becicka at aarongroup dot cz
-Status: Feedback
+Status: Open
Bug Type: *XML functions
PHP Version: 5.0.3
New Comment:
There are the same situation under windows xp. It doesn't work
properly.
Previous Comments:
------------------------------------------------------------------------
[2005-02-08 12:00:45] [EMAIL PROTECTED]
Do you happen to be running windows? - this looks like a libxml bug
using windows cr/lf endings to me but would like to be sure before
bogusing this and pushing it off to the libxml list.
------------------------------------------------------------------------
[2005-02-08 08:53:35] becicka at aarongroup dot cz
DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.6.16
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled
------------------------------------------------------------------------
[2005-02-07 19:18:19] [EMAIL PROTECTED]
Works fine on my machine, as it returns:
<?xml version="1.0"?>
<a><B><C/></B></a>
What version of libxml2 are you using? 2.6.x? Something earlier?
------------------------------------------------------------------------
[2005-02-07 18:44:38] becicka at aarongroup dot cz
Description:
------------
$dom->saveXML() return:
<?xml version="1.0"?>
<a><B><C/>
</B></a>
instead of:
<?xml version="1.0"?><a><B><C/></B></a>
Reproduce code:
---------------
$dom = new DOMDocument;
$dom->preserveWhiteSpace = false;
$def = '
<a>
<B>
<C/>
</B>
</a>';
$dom->loadXML($def);
echo "<pre>";
echo htmlentities($dom->saveXML());
echo "</pre>";
Expected result:
----------------
$dom->saveXML() should return
<?xml version="1.0"?><a><B><C/></B></a>
Actual result:
--------------
<?xml version="1.0"?>
<a><B><C/>
</B></a>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=31873&edit=1