|
DomNode::append_child(PHP 4 >= 4.1.0) DomNode::append_child — Adds a new child at the end of the children ОписаниеThis functions appends a child to an existing list of children or creates a new list of children. Список параметров
Возвращаемые значенияReturns the appended node on success или FALSE в случае возникновения ошибки. Список изменений
ПримерыThe following example adds a new element node to a fresh document and sets the attribute align to left.
Пример #1 Adding a child
<?php The above example could also be written as the following:
Пример #2 Adding a child
<?php A more complex example is the one below. It first searches for a certain element, duplicates it including its children and adds it as a sibling. Finally a new attribute is added to one of the children of the new sibling and the whole document is dumped.
Пример #3 Adding a child
<?php The above example could also be done with DomNode::insert_before instead of DomNode::append_child. Migrating to PHP 5You should use DOMNode::appendChild. |
|||||||||||