example for amazon webservice
<?php
$wsdl_url =
"http://soap.amazon.com/schemas3/AmazonWebServices.wsdl";
$client = new SoapClient($wsdl_url);
var_dump($client->__getFunctions());
?>
SoapClient->__getFunctions()
(No version information available, might be only in CVS)
SoapClient->__getFunctions() — Gibt eine Liste der SOAP-Funktionen zurück
Beschreibung
SoapClient
array
__getFunctions
( void
)
Gibt eine Liste der SOAP-Funktionen zurück.
Hinweis: Diese Funktion ist nur im WSDL-Modus verfügbar.
Rückgabewerte
Liste der SOAP-Funktionen.
Beispiele
Beispiel #1 SoapClient->__getFunctions() example
<?php
$client = new SoapClient('some.wsdl');
var_dump($client->__getFunctions());
?>
SoapClient->__getFunctions()
Dougal Matthews
17-Jul-2008 10:24
17-Jul-2008 10:24
