Join our community in the tech forums for uncut technology discussion.
SoapClient->__getFunctions()
SoapClient->__getFunctions() --
Returns list of SOAP functions
Descriptionclass SoapClient { array __getFunctions ( void ) }
Returns the list of SOAP functions.
Note:
This function works only in WSDL mode.
Return Values
The list of SOAP functions.
Examples
Example 1. SoapClient->__getFunctions() example
<?php $client = SoapClient("some.wsdl"); var_dump($client->__getFunctions()); ?>
|
|
Join our community in the tech forums for uncut technology discussion.
|