Searched refs:getAttributeNS (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/dom/tests/modern/spec/ |
H A D | Element_getAttributeNS.phpt | 2 Element::getAttributeNS() 14 var_dump($body->getAttributeNS(NULL, "align")); 15 var_dump($body->getAttributeNS("", "align")); 16 var_dump($body->getAttributeNS(NULL, "ALIGN")); 17 var_dump($body->getAttributeNS("", "ALIGN")); 18 var_dump($body->getAttributeNS(NULL, "foo:bar")); 19 var_dump($body->getAttributeNS("", "foo:bar")); 20 var_dump($body->getAttributeNS(NULL, "FOO:BAR")); 21 var_dump($body->getAttributeNS("", "FOO:BAR")); 38 var_dump($body->getAttributeNS("urn:a", "local2")); [all …]
|
/php-src/ext/dom/tests/ |
H A D | bug34276.phpt | 24 var_dump($foo->getAttributeNS('http://www.example.com/ns/foo', 'attra')); 30 var_dump($foo->getAttributeNS('http://www.example.com/ns/foo', 'attra')); 31 var_dump($foo->getAttributeNS('http://www.example.com/ns/fubar', 'attrb')); 32 var_dump($foo->getAttributeNS('http://www.example.com/ns/foo', 'attrc'));
|
H A D | DOMElement_get_or_has_attribute_ns_xmlns.phpt | 11 var_dump($dom->documentElement->getAttributeNS('http://www.w3.org/2000/xmlns/', 'a')); 12 var_dump($dom->documentElement->getAttributeNS('http://www.w3.org/2000/xmlns/', 'b'));
|
H A D | domelement.phpt | 37 echo "Language: ".$node->getAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang')."\n"; 41 echo "Language: ".$node->getAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang')."\n"; 48 echo "Language: ".$node->getAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang')."\n";
|
/php-src/ext/dom/ |
H A D | php_dom.stub.php | 777 public function getAttributeNS(?string $namespace, string $localName): string {} function in DOMElement 1606 public function getAttributeNS(?string $namespace, string $localName): ?string {} function in Dom\\Element
|
H A D | element.c | 880 PHP_METHOD(DOMElement, getAttributeNS) in PHP_METHOD() argument
|
H A D | php_dom_arginfo.h | 1186 ZEND_METHOD(DOMElement, getAttributeNS); 1441 ZEND_ME(DOMElement, getAttributeNS, arginfo_class_DOMElement_getAttributeNS, ZEND_ACC_PUBLIC)
|
Completed in 43 milliseconds