SoapObject::__isFault -- Query if a fault occured in the SOAP transaction
Description
Warnung |
Diese Funktion ist EXPERIMENTELL. Das bedeutet, dass sich das Verhalten der Funktion, ihr Name, und ALLES andere, das hier dokumentiert ist, in zukünftigen Versions des Pakets OHNE WARNUNG ändern kann. Seien Sie gewarnt und nutzen Sie das Paket auf eigenes Risiko. |
Return TRUE if an error occured during the last SOAP method call.
Beispiel 1. SoapObject::__isFault() example //simple example to check soap extension client is working..
dl('soap.so');
$soapclient = new SoapObject("http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl");
$ret = $soapclient->sillytest();
var_dump($soapclient->__isFault()); |
|