SOAP 関数
PHP Manual

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());
?>

参考


SOAP 関数
PHP Manual