Lines Matching refs:getAttributeNodeNS
2 Element::getAttributeNodeNS()
16 var_dump($body->getAttributeNodeNS(NULL, "align")->textContent);
17 var_dump($body->getAttributeNodeNS("", "align")->textContent);
18 var_dump($body->getAttributeNodeNS(NULL, "ALIGN"));
19 var_dump($body->getAttributeNodeNS("", "ALIGN"));
20 var_dump($body->getAttributeNodeNS(NULL, "foo:bar")->textContent);
21 var_dump($body->getAttributeNodeNS("", "foo:bar")->textContent);
22 var_dump($body->getAttributeNodeNS(NULL, "FOO:BAR"));
23 var_dump($body->getAttributeNodeNS("", "FOO:BAR"));
27 var_dump($dom->documentElement->getAttributeNodeNS("http://www.w3.org/2000/xmlns/", "xmlns"));
33 var_dump($body->getAttributeNodeNS(NULL, "prefix:local")->textContent);
34 var_dump($body->getAttributeNodeNS(NULL, "prefix:LOCAL"));
40 var_dump($body->getAttributeNodeNS("urn:a", "local2")->textContent);
41 var_dump($body->getAttributeNodeNS("urn:a", "LOCAL2"));