SoapClient
PHP Manual

SoapClient::__getFunctions

(PHP 5 >= 5.0.1)

SoapClient::__getFunctionsReturns list of available SOAP functions

Descrierea

public array SoapClient::__getFunctions ( void )

Returns a list of available SOAP functions.

This function only works in WSDL mode.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The list of SOAP functions.

Exemple

Example #1 SoapClient::__getFunctions() example

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

Vedeți de asemenea


SoapClient
PHP Manual