Lines Matching refs:dom
4 dom
16 $dom = new DomDocument();
17 $dom->loadXML($xml);
18 echo $dom->firstChild->getAttribute('type')."\n";
19 echo $dom->firstChild->getAttribute('pre:type')."\n";
21 $dom->firstChild->setAttribute('pre:type', 'bar2');
22 $dom->firstChild->setAttribute('type', 'foo2');
23 $dom->firstChild->setAttribute('post:type', 'baz');
24 $dom->firstChild->setAttribute('new:type', 'baz2');
26 echo $dom->firstChild->getAttribute('type')."\n";
27 echo $dom->firstChild->getAttribute('pre:type')."\n";
28 echo $dom->firstChild->getAttribute('post:type')."\n";
30 $dom->firstChild->removeAttribute('pre:type');
31 $dom->firstChild->removeAttribute('type');
33 echo $dom->firstChild->getAttribute('type')."\n";
34 echo $dom->firstChild->getAttribute('pre:type')."\n";
35 echo $dom->firstChild->getAttribute('post:type')."\n";
36 echo $dom->firstChild->getAttribute('new:type');