![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|||||||||||
DomNode->append_child(no version information, might be only in CVS) DomNode->append_child -- Adds a new child at the end of the childrenDescriptionclass DOMNode {DOMNode append_child ( DOMNode newnode ) } This functions appends a child to an existing list of children or creates a new list of children. Parameters
ChangeLog
ExamplesThe following example adds a new element node to a fresh document and sets the attribute align to left.
The above example could also be written as the following:
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.
The above example could also be done with DomNode->insert_before instead of DomNode->append_child. Copyright © 1997 - 2007 by the PHP Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later. A copy of the Open Publication License is distributed with this manual, the latest version is presently available at http://www.opencontent.org/openpub/. Please see full copyright text at http://www.php.net/manual/en/copyright.php Original version of the above documentation is available at http://www.php.net/manual/en/ |
|