Web студия "GrandView"
  Главная   Написать Контакты
   
   
О проекте
Руководство php
 

DomNode->remove_child

(no version information, might be only in CVS)

DomNode->remove_child --  Removes child from list of children

Описание

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.

Пример 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 note add a note User Contributed Notes
DomNode->remove_child
iloveitaly at gmail.com
04-Dec-2004 06:28
The remove_child() function seems to have a bug. if the parent node  of the node you are trying to delete is the same as the root node it will give you unexpected errors. I fixed this by checking if the parent node of the node i was deleting was the same as the document node. take a look at the function below if you are running into the same problem. $this->xmlData reffers to the domxml object inside the class i was using.
<?php
   
function deleteNode($ref, $levels) {
       
$parent = $ref->parent_node();
       
$root = $this->xmlData->document_element();
        if(
$parent->node_name()==$root->node_name()) {
           
$parent = $this->xmlData->document_element();
        }
        if(
$parent->remove_child($ref)) {
            return
true;
        } else {
            exit(
"error removing node");
        }
    }
?>

DomNode->replace_child> <DomNode->previous_sibling
Last updated: Sat, 27 Jan 2007
 
 
Новости
11 июля 2007
Сайт запущен
© 2007 info@grandviewstudio.com

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 324

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 330
Z058440144362 Z348613067571