|
PHP5中文手册
DomNode->append_child(No version information available, might be only in CVS) DomNode->append_child — Adds a new child at the end of the children 说明DOMNode
DOMNode append_child
( DOMNode $newnode
)
This functions appends a child to an existing list of children or creates a new list of children. 参数
返回值Returns the appended node on success or FALSE on failure. 更新日志
范例The following example adds a new element node to a fresh document and sets the attribute align to left.
Example#1 Adding a child
<?php The above example could also be written as the following:
Example#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.
Example#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(). |