Lines Matching refs:rootnode
17 $rootnode = $dom->documentElement; variable
18 print_node($rootnode);
21 $children = $rootnode->childNodes;
26 $last = $rootnode->lastChild;
45 $attr = $rootnode->setAttribute("src", "picture.gif");
46 $attr = $rootnode->getAttribute("src");
51 $attr = $rootnode->getAttributeNode("src");
55 $attr = $rootnode->removeAttribute("src");
59 $attrs = $rootnode->attributes;
68 $newchild = $rootnode->appendChild($myelement);
79 $children = $rootnode->getElementsByTagName("Silly");
84 $rootnode->removeChild($children->item(0));
85 print_node_list($rootnode->childNodes);