OK, I'm trying to achieve this for hours now and can't seem to find a solution so here I am!
I have 2 DOMDocument and I want to move the nodes of a document to the other one. I know the structure of both documents and they are of the same type (so I should have no problem to merge them).
Anyone can help me? If you need more info let me know.
Thanks!
To copy (or) move nodes to another DOMDocument
you'll have to import the nodes into the new DOMDocument
with importNode()
. Example taken from the manual:
$orgdoc = new DOMDocument;
$orgdoc->loadXML("<root><element><child>text in child</child></element></root>");
$node = $orgdoc->getElementsByTagName("element")->item(0);
$newdoc = new DOMDocument;
$newdoc->loadXML("<root><someelement>text in some element</someelement></root>");
$node = $newdoc->importNode($node, true);
$newdoc->documentElement->appendChild($node);
Where the first parameter of importNode()
is the node itself and the second parameter is a boolean that indicates whether or not to import the whole node tree.
You need to import it into the target document. See DOMDocument::importNode
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With