Home
last modified time | relevance | path

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

12345678910>>...12

/PHP-8.1/ext/dom/tests/
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 Dbug36756.phpt10 $dom->loadXML('<root><child/></root>');
12 $node = $xpath->query('/root')->item(0);
17 $dom->loadXML('<root><child/></root>');
31 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);
H A DDOMCharacterData_deleteData_basic_001.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
15 $root->appendChild($cdata);
H A DDOMCharacterData_deleteData_error_002.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
15 $root->appendChild($cdata);
H A DDOMNode_replaceChild_basic.phpt12 <root><foo><bar/><baz/></foo><spam><eggs/><eggs/></spam></root>');
36 <root><foo><qux/><baz/></foo><spam><eggs/><eggs/></spam></root>
41 <root><foo><baz/></foo><spam><qux/><eggs/></spam></root>
44 <root><foo><spam><qux/><eggs/></spam></foo></root>
/PHP-8.1/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 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 Dbug37076.phpt7 $xml = simplexml_load_string("<root><foo /></root>");
14 <root><foo>foobar</foo></root>
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>
H A Dprofile06.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 $attr = $root->child->attributes('reserved-ns');
/PHP-8.1/Zend/
H A Dzend_generators.h50 zend_generator *root; /* if parent == NULL */ member
116 zend_generator *root = generator->node.ptr.root; in zend_generator_get_current() local
117 if (!root) { in zend_generator_get_current()
118 root = zend_generator_update_root(generator); in zend_generator_get_current()
121 if (EXPECTED(root->execute_data)) { in zend_generator_get_current()
123 return root; in zend_generator_get_current()
/PHP-8.1/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.1/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.1/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
/PHP-8.1/ext/intl/tests/
H A Dcollator_create3.phpt25 'root',
63 ULOC_ACTUAL_LOCALE = 'root'
70 ULOC_VALID_LOCALE = 'root'
71 ULOC_ACTUAL_LOCALE = 'root'
76 Locale: 'root'
77 ULOC_REQUESTED_LOCALE = 'root'
78 ULOC_VALID_LOCALE = 'root'
79 ULOC_ACTUAL_LOCALE = 'root'

Completed in 45 milliseconds

12345678910>>...12