Home
last modified time | relevance | path

Searched refs:children (Results 51 – 75 of 97) sorted by path

1234

/PHP-7.4/ext/simplexml/tests/
H A D033.phpt13 <children>
15 </children>
73 ["children"]=>
115 ["children"]=>
H A Dbug27010.phpt2 Bug #27010 (segfault and node text not displayed when returned from children())
23 foreach ($sxe->children('http://www.example.com/hot') as $element_name => $element) {
H A Dbug41861.phpt24 foreach ($xml->children($ns) as $child)
29 echo "children($ns): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
37 children(): 'first_node_no_ns' -- namespaces:
38 children(): 'last_node_no_ns' -- namespaces:
39 children(#ns1): 'node1' -- namespaces: #ns1
40 children(#ns2): 'node2' -- namespaces: #ns2
41 children(#ns3): 'node3' -- namespaces: #ns3
H A Dbug62639.phpt27 foreach ($a1->b->c->children() as $key => $value) {
42 foreach ($a2->b->c->children() as $key => $value) {
H A Dbug72971.phpt11 var_dump($xml->children('ns'));
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);
H A Dprofile04.phpt13 echo $root->children('reserved-ns')->child;
H A Dprofile05.phpt14 echo $root->children('reserved')->child;
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 Dprofile12.phpt2 SimpleXML [profile]: Accessing namespaced root and non namespaced children
29 var_dump($sxe->Body->children(''));
30 var_dump($sxe->Body->children('')->businessList);
H A Dprofile13.phpt24 var_dump($sxe->children('soap', 1));
28 var_dump($sxe->Body->children(''));
29 var_dump($sxe->Body->children('')->businessList);
/PHP-7.4/ext/soap/
H A Dphp_encoding.c1315 if (node && node->children && node->children->content) { in model_to_zval_object()
1504 if (val && val->children && val->children->content) { in to_zval_object_ex()
1624 if (property->children && property->children->content && in model_to_xml_object()
1646 if (property->children && property->children->content && in model_to_xml_object()
1902 if (dummy->children && dummy->children->content) { in to_xml_object()
2450 attr->children && attr->children->content) { in to_zval_array()
2484 attr->children && attr->children->content) { in to_zval_array()
2493 attr->children && attr->children->content) { in to_zval_array()
2572 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_packet_soap.c56 trav = response->children; in parse_packet_soap()
103 trav = env->children; in parse_packet_soap()
212 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
214 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
220 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
223 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
252 resp = body->children; in parse_packet_soap()
308 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
309 val = cur->children; in parse_packet_soap()
339 val = resp->children; in parse_packet_soap()
[all …]
H A Dphp_schema.c186 trav = schema->children; in load_schema()
367 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType()
443 trav = listType->children; in schema_list()
663 trav = restType->children; in schema_restriction_simpleContent()
763 trav = restType->children; in schema_restriction_complexContent()
888 trav = extType->children; in schema_extension_simpleContent()
943 trav = extType->children; in schema_extension_complexContent()
1031 trav = all->children; in schema_all()
1257 trav = seqType->children; in schema_sequence()
1414 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType()
[all …]
H A Dphp_sdl.c218 attr->children && attr->children->content && in is_wsdl_element()
347 root = wsdl->children; in load_wsdl_ex()
367 trav = definitions->children; in load_wsdl_ex()
404 if (name && name->children && name->children->content) { in load_wsdl_ex()
414 if (name && name->children && name->children->content) { in load_wsdl_ex()
424 if (name && name->children && name->children->content) { in load_wsdl_ex()
434 if (name && name->children && name->children->content) { in load_wsdl_ex()
565 trav = node->children; in wsdl_soap_binding_body()
680 trav = message->children; in wsdl_message()
758 trav = service->children; in load_wsdl()
[all …]
H A Dphp_xml.c46 trav = node->children; in cleanup_xml_node()
60 } else if (trav->children != NULL) { in cleanup_xml_node()
260 } else if (node->children != NULL) { in get_node_recurisve_ex()
261 xmlNodePtr tmp = get_node_recurisve_ex(node->children, name, ns); in get_node_recurisve_ex()
284 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_ex()
297 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_recursive_ex()
301 if (node->children != NULL) { in get_node_with_attribute_recursive_ex()
302 …xmlNodePtr tmp = get_node_with_attribute_recursive_ex(node->children, name, name_ns, attribute, va… in get_node_with_attribute_recursive_ex()
H A Dsoap.c1623 xmlNodePtr env = get_node(doc_request->children,"Envelope");
3397 if (func->children != NULL ||
3474 trav = env->children;
3519 trav = body->children;
3578 trav = head->children;
3612 if (strcmp((char*)attr->children->content,"1") == 0 ||
3652 hdr_func = hdr_func->children;
3673 func = func->children;
3676 func = func->children;
4154 if (head->children == NULL) {
[all …]
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug30045.phpt27 …echo $xml->children("http://schemas.xmlsoap.org/soap/envelope/")->Body->children("http://test-uri"…
H A Dbug37013.phpt31 var $children;
45 $p->children = array( $p2, $p3 );
58children SOAP-ENC:arrayType="SOAP-ENC:Struct[2]" xsi:type="SOAP-ENC:Array"><item href="#ref1"/><it…
/PHP-7.4/ext/spl/tests/
H A Dbug65328.phpt85 protected $children = [];
151 $this->children[] = $child;
155 * @param array $children
157 public function setChildren(array $children)
159 $this->children = $children;
167 return $this->children;
229 return $this->children[$this->index];
269 return count($this->children);
277 return !empty($this->children);
299 [children:protected] => Array
[all …]
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 Dbug68128.phpt21 // print all children
28 echo "No children ";
36 No children Array
H A Drecursivedualiterator.inc33 /** @return whether both LHS and RHS have children
41 * iterators current children.
/PHP-7.4/ext/standard/tests/array/
H A Dbug48854.phpt8 'children' => array(
15 'children' => array(
29 ["children"]=>
38 ["children"]=>
/PHP-7.4/ext/tidy/tests/
H A D012.phpt2 Accessing children nodes

Completed in 66 milliseconds

1234