is_soap_fault
is_soap_fault
Checks if a SOAP call has failed
bool **is_soap_fault** mixed $object
This function is useful to check if the SOAP call failed, but
without using exceptions. To use it, create a
object with the
option set to zero or false.
In this case, the SOAP method will return a special
object which encapsulates the fault
details (faultcode, faultstring, faultactor and faultdetails).
SoapClient``exceptions``SoapFault
If is not set then SOAP call will throw
an exception on error.
checks if the given
parameter is a object.
exceptions``is_soap_fault``SoapFault
objectThe object to test.
This will return true on error, and false otherwise.
Voorbeeld: example
<?php
$client = new SoapClient("some.wsdl", array('exceptions' => 0));
$result = $client->SomeFunction();
if (is_soap_fault($result)) {
trigger_error("SOAP Fault: (faultcode: {$result->faultcode}, faultstring: {$result->faultstring})", E_USER_ERROR);
}
?>
Voorbeeld: SOAP's standard method for error reporting is exceptions
<?php
try {
$client = new SoapClient("some.wsdl");
$result = $client->SomeFunction(/* ... */);
} catch (SoapFault $fault) {
trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR);
}
?>
SoapClient::__construct``SoapFault::__construct