PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SoapClient->__getLastRequest> <SoapClient->__doRequest
Last updated: Fri, 28 Nov 2008

view this page in

SoapClient->__getFunctions

(No version information available, might be only in CVS)

SoapClient->__getFunctions Returns list of SOAP functions

Описание

SoapClient
array __getFunctions ( void )

Returns the list of SOAP functions.

Замечание: This function works only in WSDL mode.

Возвращаемые значения

The list of SOAP functions.

Примеры

Пример #1 SoapClient->__getFunctions() example

<?php
$client 
= new SoapClient('some.wsdl');
var_dump($client->__getFunctions());
?>

Смотрите также



add a note add a note User Contributed Notes
SoapClient->__getFunctions
Dougal Matthews
17-Jul-2008 01:24
example for amazon webservice

<?php

$wsdl_url
=
 
"http://soap.amazon.com/schemas3/AmazonWebServices.wsdl";
$client     = new SoapClient($wsdl_url);
var_dump($client->__getFunctions());

?>

SoapClient->__getLastRequest> <SoapClient->__doRequest
Last updated: Fri, 28 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites