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

search for in the

SoapClient::__getLastRequest> <SoapClient::__doRequest
Last updated: Fri, 13 Nov 2009

view this page in

SoapClient::__getFunctions

(PHP 5 >= 5.0.1)

SoapClient::__getFunctionsSOAP 関数の一覧を返す

説明

public array SoapClient::__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
hasegeli at arebt dot com
02-Jun-2009 04:19
This function did not work if schema is not in wsdl file.
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, 13 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites