SoapClient->__getFunctions()
    (no version information, might be only in CVS)
SoapClient->__getFunctions() -- 
   SOAP 関数の一覧を返す
  
説明
class 
SoapClient { 
array 
__getFunctions ( void  )
}
   SOAP 関数の一覧を返します。
  
注意: 
    この関数は、WSDL モードでのみ動作します。
   
例
   
例 1. SoapClient->__getFunctions() の例 
<?php $client = new SoapClient('some.wsdl'); var_dump($client->__getFunctions()); ?>
 |  
  |