|
SoapClient::__soapCallCalls a SOAP function Description
public mixed SoapClient::__soapCall(
string $name ,array $args ,arraynull $options = null ,SoapHeaderarraynull $inputHeaders = null ,array &$outputHeaders = null )
This is a low level API function that is used to make a SOAP call. Usually,
in WSDL mode, SOAP functions can be called as methods of the
SoapClient object. This method is useful in non-WSDL
mode when On error, a call to a SOAP function can cause PHP to throw exceptions or return a SoapFault object if exceptions are disabled. To check if the function call failed to catch the SoapFault exceptions, check the result with is_soap_fault. Parameters
Return ValuesSOAP functions may return one, or multiple values. If only one value is returned by the SOAP function, the return value will be a scalar. If multiple values are returned, an associative array of named output parameters is returned instead.
On error, if the SoapClient object was constructed
with the Examples
Example #1 SoapClient::__soapCall example
See Also
|