(PHP 5 >= 5.0.1)
SoapClient->__getFunctions() — SOAP 関数の一覧を返す
SOAP 関数の一覧を返します。
注意: この関数は、WSDL モードでのみ動作します。
SOAP 関数の一覧
Example#1 SoapClient->__getFunctions() の例
<?php
$client = new SoapClient('some.wsdl');
var_dump($client->__getFunctions());
?>