Home
last modified time | relevance | path

Searched refs:fault (Results 1 – 25 of 121) sorted by relevance

12345

/PHP-7.4/ext/soap/tests/
H A Dfault_warning.phpt7 $fault = new SoapFault("", "message"); // Can't be an empty string
9 $fault = new SoapFault("Sender", "message");
10 echo get_class($fault) . "\n";
11 $fault = new SoapFault(null, "message");
12 echo get_class($fault) . "\n";
15 $fault = new SoapFault(["more-ns", "Sender"], "message"); // two given
16 echo get_class($fault);
19 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
21 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
25 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
[all …]
H A Dfault001.phpt8 $fault = new SoapFault("code", "message");
9 var_dump(is_soap_fault($fault));
H A Dserver016.phpt2 SOAP Server 16: user fault
9 $server->fault("MyFault","My fault string");
34 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
H A Dserver017.phpt2 SOAP Server 17: user fault (through return)
8 return new SoapFault("MyFault","My fault string");
33 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
H A Dserver018.phpt2 SOAP Server 18: user fault (through throw)
8 throw new SoapFault("MyFault","My fault string");
33 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
H A Dserver022.phpt2 SOAP Server 22: user fault (through throw of subclass)
9 parent::__construct("MyFault","My fault string");
40 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
/PHP-7.4/Zend/tests/
H A Dbug43128.phpt15 if ($a instanceof $a); // Segmentation fault
16 new $a; // Segmentation fault
H A Dbug64677.phpt11 $cat->show_output('Files: ', `cd .`); // this causes a segmentation fault
12 $cat->show_output(`cd .`); // this causes a segmentation fault
H A Dbug70397.phpt2 Bug #70397 (Segmentation fault when using Closure::call and yield)
H A Dbug69805.phpt2 Bug #69805 (null ptr deref and seg fault in zend_resolve_class_name)
H A Dbug72441.phpt2 Bug #72441 (Segmentation fault: RFC list_keys)
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug38005.phpt10 return new SoapFault('Test', 'This is our fault: �');
41 This is our fault: �
43 …e><env:Value>Test</env:Value></env:Code><env:Reason><env:Text>This is our fault: Ä</env:Text></env…
/PHP-7.4/ext/soap/
H A Dphp_packet_soap.c28 xmlNodePtr trav, env, head, body, resp, cur, fault; in parse_packet_soap() local
179 fault = get_node_ex(body->children,"Fault",envelope_ns); in parse_packet_soap()
180 if (fault != NULL) { in parse_packet_soap()
188 tmp = get_node(fault->children, "faultcode"); in parse_packet_soap()
193 tmp = get_node(fault->children, "faultstring"); in parse_packet_soap()
200 tmp = get_node(fault->children, "faultactor"); in parse_packet_soap()
207 tmp = get_node(fault->children, "detail"); in parse_packet_soap()
212 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
220 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
231 tmp = get_node(fault->children,"Detail"); in parse_packet_soap()
/PHP-7.4/ext/intl/tests/
H A Dbug78804.phpt2 Bug #78804: Segmentation fault in Locale::filterMatches
/PHP-7.4/ext/xml/tests/
H A Dbug72099.phpt2 Bug #72099: xml_parse_into_struct segmentation fault
/PHP-7.4/ext/standard/tests/streams/
H A Dbug72221.phpt2 Bug #72221 (Segmentation fault in stream_get_line / zend_memnstr_ex)
/PHP-7.4/ext/opcache/tests/
H A Dbug73654.phpt2 Bug #73654: Segmentation fault in zend_call_function
H A Dissue0128.phpt2 ISSUE #128 (opcache_invalidate segmentation fault)
/PHP-7.4/ext/spl/tests/
H A Dbug62616.phpt2 Bug #62616 (ArrayIterator::count() from IteratorIterator instance gives Segmentation fault)
H A Dbug53362.phpt2 Bug #53362 (Segmentation fault when extending SplFixedArray)
/PHP-7.4/ext/standard/tests/array/
H A Dbug51552.phpt2 Bug #51552 (debug_backtrace() causes segmentation fault and/or memory issues)
/PHP-7.4/ext/mbstring/tests/
H A Dbug71606.phpt2 Bug #71606 (Segmentation fault mb_strcut + mb_list_encodings)
H A Dbug76319.phpt2 Bug #76319: mb_strtolower with invalid UTF-8 causes segmentation fault
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug76643.phpt2 Bug #76643 (Segmentation fault when using `output_add_rewrite_var`)
/PHP-7.4/Zend/tests/generators/
H A Dbug67497.phpt2 Bug #67467: eval with parse error causes segmentation fault in generator

Completed in 45 milliseconds

12345