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::remove_child
(PHP 4 >= 4.2.0)
DomNode::remove_child — Çocuk düğümlerden belirtileni siler
Açıklama
Çocuk düğümlerden belirtilen eskiDüğüm düğümünü siler. eskiDüğüm yoksa veya silinemezse işlev FALSE döndürür. İşlev, eskiDüğüm düğümünü silebilmişse sildiği çocuk düğümü döndürür.
Örnek 1 - Bir çocuk düğümün silinmesi
<?php
include("example.inc");
if (!$dom = domxml_open_mem($xmlstr)) {
echo "Belge çözümlenirken hata oluştu\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>";
?>
DomNode::remove_child
iloveitaly at gmail.com
05-Dec-2004 02:28
05-Dec-2004 02:28
