DomNode->append_child(no version information, might be only in CVS) DomNode->append_child -- Adds a new child at the end of the children说明class DOMNode {DOMNode append_child ( DOMNode newnode ) } This functions appends a child to an existing list of children or creates a new list of children. 参数
更新日志
范例The 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. | ||||||||||||||