Home
last modified time | relevance | path

Searched refs:getAttributeNodeNS (Results 1 – 15 of 15) sorted by relevance

/php-src/ext/dom/tests/modern/spec/
H A DElement_getAttributeNodeNS.phpt2 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"));
34 var_dump($body->getAttributeNodeNS(NULL, "prefix:LOCAL"));
[all …]
H A Dimport_of_namepace_conflicting_attributes.phpt12 $root1 = $root->getAttributeNodeNS("urn:a", "root1");
14 $root2 = $root->getAttributeNodeNS("urn:b", "root2");
18 $child1 = $child->getAttributeNodeNS("urn:x", "child1");
32 var_dump($imported->getAttributeNodeNS("urn:a", "root1")->prefix);
33 var_dump($imported->getAttributeNodeNS("urn:a", "root1")->namespaceURI);
34 var_dump($imported->getAttributeNodeNS("urn:b", "root2")->prefix);
35 var_dump($imported->getAttributeNodeNS("urn:b", "root2")->namespaceURI);
36 var_dump($imported->getAttributeNodeNS("urn:x", "child1")->prefix);
37 var_dump($imported->getAttributeNodeNS("urn:x", "child1")->namespaceURI);
H A Dreconciliation_of_attributes.phpt12 $root1 = $root->getAttributeNodeNS("urn:a", "root1");
14 $root2 = $root->getAttributeNodeNS("urn:b", "root2");
16 $root3 = $root->getAttributeNodeNS("urn:a", "root3");
20 $child1 = $child->getAttributeNodeNS("urn:x", "child1");
22 $child2 = $child->getAttributeNodeNS("urn:a", "child2");
H A Dimport_of_lone_attribute.phpt12 $attr = $root->getAttributeNodeNS("urn:a", "foo");
H A Ddom_parsing_gh45.phpt10 $attr = $root->firstChild->getAttributeNodeNS("u1", "name");
H A Dattribute_entity_expansion.phpt33 $attr = $elt->getAttributeNodeNS('http://www.w3.org/2000/svg', 'id');
H A Dattribute_entity_expansion_legacy.phpt33 $attr = $elt->getAttributeNodeNS('http://www.w3.org/2000/svg', 'id');
/php-src/ext/dom/tests/
H A Dbug_lifetime_parentNode_getAttributeNodeNS.phpt2 Lifetime issue with parentNode on getAttributeNodeNS()
14 $ns2 = $xml->documentElement->getAttributeNodeNS("http://www.w3.org/2000/xmlns/", "ns2");
H A Dbug54382.phpt2 Bug #54382 DOMNode::getAttributeNodeNS doesn't get xmlns* attributes
16 $ns2 = $de->getAttributeNodeNS("http://www.w3.org/2000/xmlns/", "ns2");
H A DDOMDocument_adoptNode_attribute_references.phpt11 $root1 = $root->getAttributeNodeNS("urn:a", "root1");
H A Dgh12870.inc21 … var_dump($attr === $d->documentElement->getAttributeNodeNS($uri, $parts[count($parts) - 1]));
H A Ddomelement.phpt49 $lang = $node->getAttributeNodeNS('http://www.w3.org/XML/1998/namespace', 'lang');
/php-src/ext/dom/
H A Dphp_dom.stub.php639 public function getAttributeNodeNS(?string $namespace, string $localName) {} function in DOMElement
1332 public function getAttributeNodeNS(?string $namespace, string $localName): ?Attr {} function in DOM\\Element
H A Delement.c1122 PHP_METHOD(DOMElement, getAttributeNodeNS) in PHP_METHOD() argument
H A Dphp_dom_arginfo.h1152 ZEND_METHOD(DOMElement, getAttributeNodeNS);
1418 …ZEND_ME(DOMElement, getAttributeNodeNS, arginfo_class_DOMElement_getAttributeNodeNS, ZEND_ACC_PUBL…

Completed in 44 milliseconds