SoapClient::__getFunctions
(no version information, might be only in CVS)
SoapClient::__getFunctions -- Returns list of SOAP functions
Description
array SoapClient::__getFunctions ( void )
This function works only in WSDL mode.
Example 1. SoapClient::__getFunctions() example
<?php
$client = SoapClient("some.wsdl");
var_dump($client->__getFunctions());
?>
See also SoapClient::SoapClient().
SoapClient::__getLastRequest
(no version information, might be only in CVS)
SoapClient::__getLastRequest -- Returns last SOAP request
Description
string SoapClient::__getLastRequest ( void )
This function works only with SoapClient which was created
with the trace option.
Example 1. SoapClient::__getLastRequest() example
<?php
$client = SoapClient("some.wsdl", array('trace'
=> 1));
$result = $client->SomeFunction(...);
echo "REQUEST:\n" . $client->__getLastRequest()
. "\n";
?>
See also SoapClient::SoapClient().
|