Searched refs:getAttributeNodeNS (Results 1 – 15 of 15) sorted by relevance
/php-src/ext/dom/tests/modern/spec/ |
H A D | Element_getAttributeNodeNS.phpt | 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")); 34 var_dump($body->getAttributeNodeNS(NULL, "prefix:LOCAL")); [all …]
|
H A D | import_of_namepace_conflicting_attributes.phpt | 12 $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 D | reconciliation_of_attributes.phpt | 12 $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 D | import_of_lone_attribute.phpt | 12 $attr = $root->getAttributeNodeNS("urn:a", "foo");
|
H A D | dom_parsing_gh45.phpt | 10 $attr = $root->firstChild->getAttributeNodeNS("u1", "name");
|
H A D | attribute_entity_expansion.phpt | 33 $attr = $elt->getAttributeNodeNS('http://www.w3.org/2000/svg', 'id');
|
H A D | attribute_entity_expansion_legacy.phpt | 34 $attr = $elt->getAttributeNodeNS('http://www.w3.org/2000/svg', 'id');
|
/php-src/ext/dom/tests/ |
H A D | bug_lifetime_parentNode_getAttributeNodeNS.phpt | 2 Lifetime issue with parentNode on getAttributeNodeNS() 14 $ns2 = $xml->documentElement->getAttributeNodeNS("http://www.w3.org/2000/xmlns/", "ns2");
|
H A D | bug54382.phpt | 2 Bug #54382 DOMNode::getAttributeNodeNS doesn't get xmlns* attributes 16 $ns2 = $de->getAttributeNodeNS("http://www.w3.org/2000/xmlns/", "ns2");
|
H A D | DOMDocument_adoptNode_attribute_references.phpt | 11 $root1 = $root->getAttributeNodeNS("urn:a", "root1");
|
H A D | gh12870.inc | 21 … var_dump($attr === $d->documentElement->getAttributeNodeNS($uri, $parts[count($parts) - 1]));
|
H A D | domelement.phpt | 49 $lang = $node->getAttributeNodeNS('http://www.w3.org/XML/1998/namespace', 'lang');
|
/php-src/ext/dom/ |
H A D | php_dom.stub.php | 783 public function getAttributeNodeNS(?string $namespace, string $localName) {} function in DOMElement 1624 public function getAttributeNodeNS(?string $namespace, string $localName): ?Attr {} function in Dom\\Element
|
H A D | element.c | 1177 PHP_METHOD(DOMElement, getAttributeNodeNS) in PHP_METHOD() argument
|
H A D | php_dom_arginfo.h | 1188 ZEND_METHOD(DOMElement, getAttributeNodeNS); 1443 …ZEND_ME(DOMElement, getAttributeNodeNS, arginfo_class_DOMElement_getAttributeNodeNS, ZEND_ACC_PUBL…
|
Completed in 38 milliseconds