6
$dom = new DomDocument;
7
$dom->preserveWhiteSpace = FALSE;
9
$file = '../XMLData/example1b.xml';
10
$loadstate=$dom->load($file);
12
$xp = new DOMXPath($dom);
16
echo "<b>Example: ".$xpathString."</b><br>";
17
$nodes = $xp->query($xpathString);
18
foreach ($nodes as $node) {
20
$xpathString="./color";
21
echo "<b>Example: ".$xpathString."</b><br>";
22
$innernodes = $xp->query($xpathString,$node);
23
foreach ($innernodes as $innernode) {
24
echo " Name:".$innernode->nodeValue."<br>";
b'\\ No newline at end of file'