Searched refs:setAttributeNodeNS (Results 1 – 18 of 18) sorted by relevance
/php-src/ext/dom/tests/modern/html/serializer/ |
H A D | HTMLDocument_serialize_attribute_ns.phpt | 10 $root->setAttributeNodeNS($dom->createAttributeNS("http://php.net", "x:foo")); 11 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/XML/1998/namespace", "y:id")); 12 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns")); 13 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:f")); 14 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/1999/xlink", "z:f"));
|
/php-src/ext/dom/tests/createAttributeNS_prefix_conflicts/ |
H A D | setAttributeNS_with_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNodeNS variation, with pre… 11 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns1', 'f… 13 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns2', 'f… 15 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns3', 'f… 17 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns4', 'f…
|
H A D | setAttributeNS_without_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNodeNS variation, without … 11 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns1', 'h… 13 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns2', 'h… 15 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns3', 'h… 17 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns4', 'h…
|
/php-src/ext/dom/tests/ |
H A D | setAttributeNodeNS_same_uri_different_prefix.phpt | 2 setAttributeNodeNS with same URI but different prefix 16 var_dump($doc->documentElement->setAttributeNodeNS($attribute)?->nodeValue); 20 var_dump($doc->documentElement->setAttributeNodeNS($attribute)?->nodeValue); 24 var_dump($doc->documentElement->setAttributeNodeNS($attribute)?->nodeValue);
|
H A D | gh15910.phpt | 12 $doc->documentElement->setAttributeNodeNS($doc); 18 DOMElement::setAttributeNodeNS(): Argument #1 ($attr) must be of type DOMAttr, DOMDocument given
|
H A D | DOMDocument_importNode_attribute_prefix_conflict.phpt | 16 $dom2->documentElement->setAttributeNodeNS($imported); 30 $dom2->documentElement->setAttributeNodeNS($imported); 46 $dom2->documentElement->setAttributeNodeNS($imported);
|
H A D | gh16594.phpt | 14 $v9->setAttributeNodeNS($v7);
|
H A D | gh12870.inc | 10 $d->documentElement->setAttributeNodeNS($attr);
|
H A D | gh16151.phpt | 12 $element->setAttributeNodeNS($attr);
|
H A D | domelement.phpt | 46 $node->setAttributeNodeNS($lang);
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Node_isEqualNode_02.phpt | 17 $e2->setAttributeNodeNS($child = $dom->createAttributeNS("http://example.com", "foo:bar"));
|
H A D | Element_setAttributeNode.phpt | 32 var_dump($container->setAttributeNodeNS($attribute5) === null);
|
H A D | Document_createAttributeNS.phpt | 49 $root->setAttributeNodeNS($attr); 64 $root->setAttributeNodeNS($attr);
|
H A D | import_of_namepace_conflicting_attributes.phpt | 26 $root->setAttributeNodeNS($child1);
|
H A D | reconciliation_of_attributes.phpt | 31 $root->setAttributeNodeNS($child1);
|
/php-src/ext/dom/ |
H A D | php_dom.stub.php | 816 public function setAttributeNodeNS(DOMAttr $attr) {} function in DOMElement 1627 public function setAttributeNodeNS(Attr $attr) : ?Attr {} function in Dom\\Element
|
H A D | element.c | 1225 PHP_METHOD(DOMElement, setAttributeNodeNS) in PHP_METHOD() argument 1230 PHP_METHOD(Dom_Element, setAttributeNodeNS) in PHP_METHOD() argument
|
H A D | php_dom_arginfo.h | 1199 ZEND_METHOD(DOMElement, setAttributeNodeNS); 1277 ZEND_METHOD(Dom_Element, setAttributeNodeNS); 1454 …ZEND_ME(DOMElement, setAttributeNodeNS, arginfo_class_DOMElement_setAttributeNodeNS, ZEND_ACC_PUBL… 1652 …ZEND_ME(Dom_Element, setAttributeNodeNS, arginfo_class_Dom_Element_setAttributeNodeNS, ZEND_ACC_PU…
|
Completed in 38 milliseconds