|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-06-20 21:31 UTC] felipe@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: rrichards
[2011-01-12 08:34 UTC] mplomer at gmx dot de
[2013-12-03 07:45 UTC] mike@php.net
-Status: Assigned
+Status: Analyzed
[2013-12-03 07:45 UTC] mike@php.net
[2017-10-24 05:14 UTC] kalle@php.net
-Status: Analyzed
+Status: Assigned
[2017-10-24 06:15 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: rrichards
+Assigned To:
[2023-06-15 19:59 UTC] nielsdos@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: nielsdos
[2023-06-15 19:59 UTC] nielsdos@php.net
[2024-01-17 18:45 UTC] nielsdos@php.net
-Status: Closed
+Status: Re-Opened
[2024-01-17 18:45 UTC] nielsdos@php.net
[2024-03-09 16:06 UTC] nielsdos@php.net
-Status: Re-Opened
+Status: Closed
[2024-03-09 16:06 UTC] nielsdos@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 07:00:01 2025 UTC |
Description: ------------ Hi, When I import a DOM node via a document fragment, suddenly a "default" namespace comes out of nowhere (and it's really hard to remove, short of making my own cloneNode() simulation stripping it). IIRC PHP4 got this right (although it had lots of other issues), and all other languages I've tested in (Perl, Python, Ruby) do as well. Note that the code below doesn't strictly need importNode(), but I cannot really do with cloneNode() in the real code (it's vastly simplified). Note: On the surface, this appears to be the same bug as #46185, but I tested 5.3 CVS (as of 2009-02-28) and it's still there. Reproduce code: --------------- <?php $doc = new DOMDocument; $doc->loadXML('<html xmlns="something" xmlns:ns="whatever"><element ns:foo="bar" /></html>'); $root = $doc->documentElement; $elem = $root->firstChild; $frag = $doc->createDocumentFragment(); $frag->appendChild($doc->importNode($elem)); $root->appendChild($frag); print $doc->saveXML(); ?> Expected result: ---------------- <?xml version="1.0"?> <html xmlns="something" xmlns:ns="whatever"><element ns:foo="bar"/></html> Actual result: -------------- <?xml version="1.0"?> <html xmlns="something" xmlns:ns="whatever"><default:element xmlns:default="something" xmlns:ns="whatever" ns:foo="bar"/></html>