(PHP 5, PHP 7, PHP 8)
DOMNode::appendChild — Добавляет новый дочерний узел в конец списка потомков
Функция добавляет дочерний узел в существующий список потомков или создаёт новый список дочерних элементов. Дочерний узел может быть создан с помощью DOMDocument::createElement() , DOMDocument::createTextNode() и т.д., или может быть использован любой другой узел.
При использовании существующего узла он будет перемещён.
nodeДобавляемый дочерний узел.
Возвращает добавленный узел или false в случае возникновения ошибки.
Может выбросить исключение DOMException со следующими кодами ошибок:
DOM_NO_MODIFICATION_ALLOWED_ERR Возникает, если узел доступен только для чтения или предыдущий родитель вставляемого узла доступен только для чтения.
DOM_HIERARCHY_REQUEST_ERR
Возникает, если тип узла не поддерживает потомков типа,
который имеет узел node,
или если добавляемый узел является одним из предком целевого узла или им самим.
DOM_WRONG_DOCUMENT_ERR
Возникает, если node создан в другом документе,
отличном от того, в котором был создан этот узел.
Следующий пример добавляет новый узел в только что созданный документ.
Пример #1 Добавление дочернего узла
<?php
$doc = new DOMDocument;
$node = $doc->createElement("para");
$newnode = $doc->appendChild($node);
echo $doc->saveXML();
?>
Пример #2 Вложенные дочерние узлы
<?php
$doc = new DOMDocument;
$headNode = $doc->createElement("head");
$doc->appendChild($headNode);
$titleNode = $doc->createElement("title");
$headNode->appendChild($titleNode);
echo $doc->saveXML();
?>
What's not mentioned here is that DOMNode::appendChild() can also be used to move an existing node to another part of the DOMDocument, e.g.
<?php
$doc = new DOMDocument();
$doc->loadXML("<foobar><bar/><foo/></foobar>");
$bar = $doc->documentElement->firstChild;
$foo = $doc->documentElement->lastChild;
$foo->appendChild($bar);
print $doc->saveXML();
?>
This produces:
<?xml version="1.0"?>
<foobar><foo><bar/></foo></foobar>
Note that the nodes "<foo/>" and "<bar/>" were siblings, i.e. the first and last child of "<foobar>" but using appendChild() we were able to move "<bar/>" so that it is a child of "<foo/>".
This saves you the trouble of doing a DOMNode::removeChild($bar) to remove "<bar/>" before appending it as a child of "<foo/>".
Kris DoverIf you want to move the children of one node to another, you cannot simply iterate on $element->childNodes - you have to make an array first:
<?php
$children = [];
foreach ($elemWithChildren->childNodes as $child) {
$children[] = $child;
}
foreach ($children as $child) {
$targetElement->appendChild($child);
}
?>Aware dealing with DOMNodeList and appendChild() on the same Node.
If you want to replace only the children not the DOMElement itself you probably foreach childNodes-property or get the DOMElements with a for-loop and item()-method of the DOMNodeList.
You will fail if you not clone the received single DOMElement. Actually the count of the DOMNodelist will be decreased on appendChild count but appendChild seems to refer to the old Nodelist and nothing visible will happen. Cloning will help.If you want to create nested DOM elements:
<?php
$doc = new DOMDocument();
$foo = $doc->createElement("foo");
$doc->appendChild($foo);
$bar = $doc->createElement("bar");
$foo->appendChild($bar);
$bazz = $doc->createElement("bazz");
$foo->appendChild($bazz);
echo $doc->saveXML();
?>
Is equivalent to:
<foo>
<bar></bar>
<bazz></bazz>
</foo>