Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 98) sorted by relevance

1234

/PHP-8.3/Zend/tests/
H A Dunset_prop_recursion.phpt7 public $children = [];
10 $this->children[] = $node;
14 unset($this->children);
26 ["children"]=>
32 ["children"]=>
40 ["children"]=>
52 ["children"]=>
62 ["children"]=>
H A Dbug63635.phpt7 public $children = array();
11 $parent->children[] = $this;
13 $this->children[] = $this;
17 $this->children = NULL;
H A Dbug71067.phpt10 'children' => []
12 $arr->children[] = 1;
25 [children] => Array
H A Dbug78502.phpt9 'children' => [
11 ['name' => 'c', 'quant' => 1, 'children' => [
26 tree_map($tree, 'children', function ($node) {});
H A Dgc_017.phpt9 public $children;
17 $this->children[] = $node;
22 unset($this->children);
H A Dbug39297.phpt11 public $children = array();
22 $this->children[$cannonicalName] = $value;
29 return $this->children[$cannonicalName];
/PHP-8.3/ext/soap/
H A Dphp_packet_soap.c54 trav = response->children; in parse_packet_soap()
101 trav = env->children; in parse_packet_soap()
210 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
212 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
218 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
221 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
250 resp = body->children; in parse_packet_soap()
306 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
307 val = cur->children; in parse_packet_soap()
337 val = resp->children; in parse_packet_soap()
[all …]
H A Dphp_encoding.c1306 if (node && node->children && node->children->content) { in model_to_zval_object()
1494 if (val && val->children && val->children->content) { in to_zval_object_ex()
1616 if (property->children && property->children->content && in model_to_xml_object()
1638 if (property->children && property->children->content && in model_to_xml_object()
1896 if (dummy->children && dummy->children->content) { in to_xml_object()
2451 attr->children && attr->children->content) { in to_zval_array()
2485 attr->children && attr->children->content) { in to_zval_array()
2494 attr->children && attr->children->content) { in to_zval_array()
2573 attr->children && attr->children->content) { in to_zval_array()
2975 if (dummy && dummy->children && dummy->children->content) { in to_xml_list()
[all …]
H A Dphp_schema.c184 trav = schema->children; in load_schema()
365 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType()
441 trav = listType->children; in schema_list()
661 trav = restType->children; in schema_restriction_simpleContent()
761 trav = restType->children; in schema_restriction_complexContent()
886 trav = extType->children; in schema_extension_simpleContent()
941 trav = extType->children; in schema_extension_complexContent()
1029 trav = all->children; in schema_all()
1255 trav = seqType->children; in schema_sequence()
1412 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType()
[all …]
/PHP-8.3/ext/dom/tests/
H A Ddom001.phpt18 //$children = $dom->children();
19 //print_node_list($children);
27 print_node_list($children);
39 // The children of this parent are the same children as one above
41 $children = $parent->childNodes;
42 print_node_list($children);
69 print_node_list($children);
81 print_node_list($children);
85 print_node_list($children);
107 --------- children of root
[all …]
H A DDOMNode_removeChild_basic.phpt38 $children = $root->childNodes;
39 $len = $children->length;
41 for ($index = $children->length - 1; $index >=0; $index--) {
43 $current = $children->item($index);
49 $children = $root->childNodes;
50 $len = $children->length;
52 for ($index = 0; $index < $children->length; $index++) {
54 $current = $children->item($index);
H A DDOMNode_cloneNode_basic.phpt39 $children = $root->childNodes;
40 $len = $children->length;
41 for ($index = $children->length - 1; $index >=0; $index--) {
42 $current = $children->item($index);
49 $first_course = $children->item(0);
67 $children = $root->childNodes;
68 for ($index = 0; $index < $children->length; $index++) {
70 dumpcourse($children->item($index));
H A Ddom_comment_variation.phpt16 $children = $root->childNodes;
18 for ($index = 0; $index < $children->length; $index++) {
20 $current = $children->item($index);
H A Ddom_comment_basic.phpt19 $children = $root->childNodes;
21 for ($index = 0; $index < $children->length; $index++) {
23 $current = $children->item($index);
/PHP-8.3/ext/simplexml/tests/
H A Dbug41861.phpt24 foreach ($xml->children($ns) as $child)
29 echo "children($ns): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
36 children(): 'first_node_no_ns' -- namespaces:
37 children(): 'last_node_no_ns' -- namespaces:
38 children(#ns1): 'node1' -- namespaces: #ns1
39 children(#ns2): 'node2' -- namespaces: #ns2
40 children(#ns3): 'node3' -- namespaces: #ns3
H A D032.phpt11 <children>
13 </children>
22 <children>
24 </children>
H A Dprofile11.phpt15 var_dump($root->children('reserved-ns')->child);
16 var_dump($root->children('special-ns')->child);
17 var_dump((string)$root->children('reserved-ns')->child);
18 var_dump((string)$root->children('special-ns')->child);
H A D019.phpt2 SimpleXML: foreach with children()
36 foreach($sxe->children() as $name => $data) {
43 foreach(clone $sxe->children() as $name => $data) {
50 foreach($sxe->elem11->children() as $name => $data) {
57 foreach($sxe->elem1->children() as $name => $data) {
H A Dbug72971_2.phpt12 var_dump($xml->children('ns')->foo);
14 $xml->children('ns')->foo = 'ns:new-bar';
16 var_dump($xml->children('ns')->foo);
/PHP-8.3/ext/spl/tests/
H A Dbug66405.phpt25 $children = parent::getChildren();
26 if (is_object($children)) {
27 echo get_class($children) . " $children\n";
29 echo gettype($children) . " $children\n";
31 return $children;
H A Dbug65328.phpt82 protected $children = [];
148 $this->children[] = $child;
152 * @param array $children
154 public function setChildren(array $children)
156 $this->children = $children;
164 return $this->children;
223 return $this->children[$this->index];
251 return count($this->children);
256 return !empty($this->children);
276 [children:protected] => Array
[all …]
/PHP-8.3/ext/standard/tests/array/
H A Dbug48854.phpt8 'children' => array(
15 'children' => array(
29 ["children"]=>
38 ["children"]=>
/PHP-8.3/ext/dom/
H A Dparentnode.c43 first = nodep->children; in dom_parent_node_first_element_child_read()
110 first = nodep->children; in dom_parent_node_child_element_count()
154 if (parent->children == NULL) { in dom_add_child_without_merging()
155 parent->children = child; in dom_add_child_without_merging()
202 newNode = newNode->children; in dom_zvals_to_fragment()
247 fragment->children = NULL; in dom_fragment_assign_parent_node()
294 if (parentNode->children) { in dom_pre_insert()
334 newchild = fragment->children; in dom_parent_node_append()
430 newchild = fragment->children; in dom_parent_node_after()
520 xmlNodePtr children = child->parent->children; in dom_child_removal_preconditions() local
[all …]
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_cmd.h158 #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent, flags) \ argument
159 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent, flags}
161 #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args, flags) \ argument
162 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL, flags}
164 #define PHPDBG_COMMAND_D(name, tip, alias, children, args, flags) \ argument
165 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##name, children, args, NULL, flags}
/PHP-8.3/ext/soap/tests/bugs/
H A Dbug37013.phpt29 var $children;
43 $p->children = array( $p2, $p3 );
56children SOAP-ENC:arrayType="SOAP-ENC:Struct[2]" xsi:type="SOAP-ENC:Array"><item href="#ref1"/><it…

Completed in 93 milliseconds

1234