dom1.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. require_once("dom1.inc");
  3. echo "Test 1: accessing single nodes from php\n";
  4. $dom = new domDocument;
  5. $dom->loadxml($xmlstr);
  6. if(!$dom) {
  7. echo "Error while parsing the document\n";
  8. exit;
  9. }
  10. // children() of of document would result in a memleak
  11. //$children = $dom->children();
  12. //print_node_list($children);
  13. echo "--------- root\n";
  14. $rootnode = $dom->documentElement;
  15. print_node($rootnode);
  16. echo "--------- children of root\n";
  17. $children = $rootnode->childNodes;
  18. print_node_list($children);
  19. // The last node should be identical with the last entry in the children array
  20. echo "--------- last\n";
  21. $last = $rootnode->lastChild;
  22. print_node($last);
  23. // The parent of this last node is the root again
  24. echo "--------- parent\n";
  25. $parent = $last->parentNode;
  26. print_node($parent);
  27. // The children of this parent are the same children as one above
  28. echo "--------- children of parent\n";
  29. $children = $parent->childNodes;
  30. print_node_list($children);
  31. echo "--------- creating a new attribute\n";
  32. //This is worthless
  33. //$attr = $dom->createAttribute("src", "picture.gif");
  34. //print_r($attr);
  35. //$rootnode->set_attributeNode($attr);
  36. $attr = $rootnode->setAttribute("src", "picture.gif");
  37. $attr = $rootnode->getAttribute("src");
  38. print_r($attr);
  39. print "\n";
  40. echo "--------- Get Attribute Node\n";
  41. $attr = $rootnode->getAttributeNode("src");
  42. print_node($attr);
  43. echo "--------- Remove Attribute Node\n";
  44. $attr = $rootnode->removeAttribute("src");
  45. print "Removed " . $attr . " attributes.\n";
  46. echo "--------- attributes of rootnode\n";
  47. $attrs = $rootnode->attributes;
  48. print_node_list($attrs);
  49. echo "--------- children of an attribute\n";
  50. $children = $attrs->item(0)->childNodes;
  51. print_node_list($children);
  52. echo "--------- Add child to root\n";
  53. $myelement = new domElement("Silly", "Symphony");
  54. $newchild = $rootnode->appendChild($myelement);
  55. print_node($newchild);
  56. print $dom->saveXML();
  57. print "\n";
  58. echo "--------- Find element by tagname\n";
  59. echo " Using dom\n";
  60. $children = $dom->getElementsByTagname("Silly");
  61. print_node_list($children);
  62. echo " Using elem\n";
  63. $children = $rootnode->getElementsByTagName("Silly");
  64. print_node_list($children);
  65. echo "--------- Unlink Node\n";
  66. print_node($children->item(0));
  67. $rootnode->removeChild($children->item(0));
  68. print_node_list($rootnode->childNodes);
  69. print $dom->savexml();
  70. echo "--------- Find element by id\n";
  71. print ("Not implemented\n");
  72. echo "--------- Check various node_name return values\n";
  73. print ("Not needed\n");
  74. ?>