(no version information, might be only in CVS)
DomNode- remove_child -- 子ノードのリストから子ノードを削除する
説明
object
DomNode- remove_child
( object oldchild)
This functions removes a child from a list of
children. If child cannot be removed or is not a child the
function will return false. If the child could be removed the
functions returns the old child.
例 1Removing a child
?php
include("example.inc");
if(!$dom = domxml_open_mem($xmlstr)) {
echo "Error while parsing the document\n";
exit;
}
$elements = $dom- get_elements_by_tagname("tbody");
$element = $elements[0];
$children = $element- child_nodes();
$child = $element- remove_child($children[0]);
echo " PRE ";
$xmlfile = $dom- dump_mem(true);
echo htmlentities($xmlfile);
echo " /PRE ";
?
|
|
See also
DomNode_append_child()
.