downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<DomNode->previous_siblingDomNode->replace_child>
Last updated: Thu, 26 Jun 2008

DomNode->remove_child

(No version information available, might be only in CVS)

DomNode->remove_child — Removes child from list of children

Description

domtext DomNode->remove_child ( domtext $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.

Example #1 Removing 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().



add a noteadd a note User Contributed Notes
Removes child from list of children
There are no user contributed notes for this page.




<DomNode->previous_siblingDomNode->replace_child>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs