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