This function did not work if schema is not in wsdl file.
SoapClient::__getFunctions
(PHP 5 >= 5.0.1)
SoapClient::__getFunctions — Returns list of available SOAP functions
Description
public array SoapClient::__getFunctions
( void
)
Returns a list of available SOAP functions.
This function only works in WSDL mode.
Parameters
This function has no parameters.
Return Values
The list of SOAP functions.
Examples
Example #1 SoapClient::__getFunctions() example
<?php
$client = new SoapClient('some.wsdl');
var_dump($client->__getFunctions());
?>
SoapClient::__getFunctions
hasegeli at arebt dot com
02-Jun-2009 07:19
02-Jun-2009 07:19
Dougal Matthews
17-Jul-2008 08:24
17-Jul-2008 08:24
example for amazon webservice
<?php
$wsdl_url =
"http://soap.amazon.com/schemas3/AmazonWebServices.wsdl";
$client = new SoapClient($wsdl_url);
var_dump($client->__getFunctions());
?>
