Home
last modified time | relevance | path

Searched refs:root (Results 26 – 50 of 337) sorted by relevance

12345678910>>...14

/PHP-8.3/ext/dom/tests/
H A DDOMNode_insertBefore.phpt12 $dom->loadXML('<root/>');
28 <root/>
31 <root><B/></root>
34 <root><A/><B/></root>
H A Dbug36756.phpt10 $dom->loadXML('<root><child/></root>');
12 $node = $xpath->query('/root')->item(0);
17 $dom->loadXML('<root><child/></root>');
27 root
H A DDOMCharacterData_appendData_basic.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($cdata);
37 <root><cdata><![CDATA[data><&"]]></cdata></root>
H A DDOMComment_appendData_basic_Sullivan.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($comment);
37 <root><comment><!--data><&"--></comment></root>
H A DDOMText_appendData_basic.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($text);
37 <root><text>data&gt;&lt;&amp;"</text></root>
H A DDOMNode_hasChildNodes.phpt13 $dom->loadXML('<root/>');
21 $dom->loadXML('<root><a/></root>');
32 $dom->loadXML('<root><a/><b/></root>');
38 <root/>
45 <root/>
H A DtoString_exceptions.phpt18 '<root xmlns:ns="foo"><node attr="foo" /><node>Text</node><ns:node/><?pi foobar?></root>');
23 $root = $doc->childNodes[0];
25 $node = $root->childNodes[0];
31 $node2 = $root->childNodes[1];
37 $node3 = $root->childNodes[2];
40 $pi = $root->childNodes[3];
58 <root xmlns:ns="foo"><node attr="foo"/><node>Text</node><ns:node/><?pi foobar?></root>
H A Dbug47849.phpt9 $aDOM->appendChild($aDOM->createElementNS('urn::root','r:root'));
22 <r:root xmlns:r="urn::root"><data xmlns="urn::data"/></r:root>
H A Dbug41374.phpt9 <root>foo<child />baz</root>
15 $root = $doc->documentElement;
16 $foo = $root->firstChild;
20 $bar = $root->insertBefore($doc->createTextNode("bar"), $foo->nextSibling);
H A DDOMCharacterData_substringData_basic_001.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($cdata);
/PHP-8.3/ext/simplexml/tests/
H A Dbug37386.phpt8 $sx1 = new SimpleXMLElement("<root />");
22 <root><node>node1</node><node>node2</node></root>
25 <root><node>New Value</node><node>node2</node></root>
H A Dbug37076.phpt7 $xml = simplexml_load_string("<root><foo /></root>");
14 <root><foo>foobar</foo></root>
H A Dprofile01.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root>
10 </root>
13 echo $root->child;
H A Dprofile03.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root>
10 </root>
13 echo $root->child['attribute'];
H A Dprofile10.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns" xmlns:special="special-ns">
11 </root>
14 $rsattr = $root->child->attributes('reserved-ns');
15 $spattr = $root->child->attributes('special-ns');
H A Dprofile02.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root>
11 </root>
14 foreach ($root->child as $child) {
H A Dprofile04.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root xmlns:reserved="reserved-ns">
10 </root>
13 echo $root->children('reserved-ns')->child;
H A Dprofile05.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->children('reserved')->child;
H A Dprofile08.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->child['attribute'];
H A Dprofile09.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->child;
H A Dbug37076_1.phpt8 $xml = simplexml_load_string("<root><foo /></root>");
21 <root><foo/></root>
/PHP-8.3/Zend/
H A Dzend_generators.h52 zend_generator *root; /* if parent == NULL */ member
118 zend_generator *root = generator->node.ptr.root; in zend_generator_get_current() local
119 if (!root) { in zend_generator_get_current()
120 root = zend_generator_update_root(generator); in zend_generator_get_current()
123 if (EXPECTED(root->execute_data)) { in zend_generator_get_current()
125 return root; in zend_generator_get_current()
/PHP-8.3/ext/spl/tests/
H A Diterator_006.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root>
12 </root>
15 foreach (new IteratorIterator($root->child) as $child) {
/PHP-8.3/ext/xml/tests/
H A Dbug27908.phpt14 xml_parse($xp, '<root></root>',TRUE);
19 x_default_handler <root>
20 x_default_handler </root>
/PHP-8.3/ext/libxml/tests/
H A Dbug42112.phpt8 <root><child xml:id="id1">baz</child></root>
26 $root = $doc->documentElement;
27 print 'Root Node: '.$root->nodeName."\n";
31 Root Node: root

Completed in 39 milliseconds

12345678910>>...14