(no version information, might be only in CVS) This functions appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. DomDocument_create_element(), DomDocument_create_text() etc. or simply by using any other node. Before a new child is appended it is first duplicated. Therefore the new child is a completely new copy which can be modified without changing the node which was passed to this function. If the node passed has children itself, they will be duplicated as well, which makes it quite easy to duplicate large parts of a xml document. The return value is the appended child. If you plan to do further modifications on the appended child you must use the returned node. The following example will add a new element node to a fresh document and sets the attribute "align" to "left". 例 1Adding a child 例 2Adding a child 例 3Adding a child See also DomNode_insert_before().