Forum und email

SoapClient->__getFunctions()

(PHP 5 >= 5.0.1)

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

説明

SoapClient
array __getFunctions ( void )

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

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

返り値

SOAP 関数の一覧

Example#1 SoapClient->__getFunctions() の例

<?php
$client 
= new SoapClient('some.wsdl');
var_dump($client->__getFunctions());
?>