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

search for in the

SoapClient->__getLastRequest> <SoapClient->__doRequest
Last updated: Fri, 05 Sep 2008

view this page in

SoapClient->__getFunctions

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

SoapClient->__getFunctions SOAP 関数の一覧を返す

説明

SoapClient
array __getFunctions ( void )

SOAP 関数の一覧を返します。

注意: この関数は、WSDL モードでのみ動作します。

返り値

SOAP 関数の一覧

例1 SoapClient->__getFunctions() の例

<?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 05: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, 05 Sep 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites