Lines Matching refs:rootnode
22 $rootnode = $dom->documentElement;
23 print_node($rootnode);
26 $children = $rootnode->childNodes;
31 $last = $rootnode->lastChild;
49 //$rootnode->set_attributeNode($attr);
50 $attr = $rootnode->setAttribute("src", "picture.gif");
51 $attr = $rootnode->getAttribute("src");
56 $attr = $rootnode->getAttributeNode("src");
60 $attr = $rootnode->removeAttribute("src");
63 echo "--------- attributes of rootnode\n";
64 $attrs = $rootnode->attributes;
73 $newchild = $rootnode->appendChild($myelement);
84 $children = $rootnode->getElementsByTagName("Silly");
89 $rootnode->removeChild($children->item(0));
90 print_node_list($rootnode->childNodes);
173 --------- attributes of rootnode