Searched refs:createElementNS (Results 1 – 15 of 15) sorted by relevance
/PHP-8.2/ext/dom/tests/ |
H A D | dom_create_element.phpt | 47 $dom->createElementNS('http://valid.com', 'valid'); 56 $dom->createElementNS('http://valid.com', 'prefix:valid'); 65 $dom->createElementNS('http://valid.com', '-invalid'); 83 $dom->createElementNS('', 'prefix:invalid'); 101 $dom->createElementNS('http://valid.com', '-prefix:valid'); 110 $dom->createElementNS('-', 'prefix:valid'); 218 $dom->createElementNS('', 'prefix:valid'); 329 5 DOMDocument::createElementNS('http://valid.com', 'valid') 337 9 DOMDocument::createElementNS('', 'prefix:invalid') 343 12 DOMDocument::createElementNS('-', 'prefix:valid') [all …]
|
H A D | DOM4_DOMNode_after_ns.phpt | 12 $root = $doc->createElementNS('http://www.w3.org/2005/Atom', 'element'); 16 $item = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'house'); 19 $item2 = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'street');
|
H A D | DOM4_DOMNode_before_ns.phpt | 12 $root = $doc->createElementNS('http://www.w3.org/2005/Atom', 'element'); 16 $item = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'house'); 19 $item2 = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'street');
|
H A D | domxpath.phpt | 46 $root->appendChild($dom->createElementNS("urn::default", "testnode", 3)); 47 $root->appendChild($dom->createElementNS("urn::default", "testnode", 4)); 48 $root->appendChild($dom->createElementNS("urn::default", "testnode", 4)); 49 $root->appendChild($dom->createElementNS("urn::default", "testnode", 5));
|
H A D | DOM4_DOMNode_append_ns.phpt | 12 $root = $doc->createElementNS('http://www.w3.org/2005/Atom', 'element'); 16 $item = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'house');
|
H A D | DOM4_DOMNode_prepend_ns.phpt | 12 $root = $doc->createElementNS('http://www.w3.org/2005/Atom', 'element'); 16 $item = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'house');
|
H A D | gh14702.phpt | 18 $xi = $doc->createElementNS('http://www.w3.org/2001/XInclude', 'xi:include'); 21 $fallback = $doc->createElementNS('http://www.w3.org/2001/XInclude', 'xi:fallback');
|
H A D | bug47849.phpt | 9 $aDOM->appendChild($aDOM->createElementNS('urn::root','r:root'));
|
H A D | bug49463.phpt | 9 $root = $doc->createElementNS('http://purl.org/rss/1.0/','rdf:RDF');
|
H A D | bug47848.phpt | 9 $aDOM->appendChild($aDOM->createElementNS('http://friend2friend.net/','f2f:a'));
|
H A D | bug67440.phpt | 13 $fragment->appendChild($document->createElementNS('http://example/ns', 'myns:childNode', '1')); 15 $fragment->appendChild($document->createElementNS('http://example/ns', 'myns:childNode', '2')); 44 …$fragment->childNodes[1]->appendChild($document->createElementNS('http://example/ns2', 'myns2:chil…
|
H A D | bug47530.phpt | 22 $frag->appendChild($doc->createElementNS('https://php.net/bar', 'bar')); 23 $frag->appendChild($doc->createElementNS('', 'bar'));
|
/PHP-8.2/ext/dom/ |
H A D | php_dom.stub.php | 723 … public function createElementNS(?string $namespace, string $qualifiedName, string $value = "") {} function in DOMDocument
|
H A D | php_dom_arginfo.h | 576 ZEND_METHOD(DOMDocument, createElementNS); 801 ZEND_ME(DOMDocument, createElementNS, arginfo_class_DOMDocument_createElementNS, ZEND_ACC_PUBLIC)
|
H A D | document.c | 868 PHP_METHOD(DOMDocument, createElementNS) in PHP_METHOD() argument
|
Completed in 24 milliseconds