Overview
KB
Technical FAQ
PHP Manual
CSS2 Manual
HTML Manual
JS Guide
JS Reference
PhpDock Manual
Nu-Coder Manual
PhpExpress Manual
PHP Joomla
Development
Learn PHP
 
<SoapClient->__doRequest()SoapClient->__getLastRequest()>
Last updated: Tue, 19 Sep 2006

SoapClient->__getFunctions()

(no version information, might be only in CVS)

SoapClient->__getFunctions() --  Returns list of SOAP functions

Description

class SoapClient {

array __getFunctions ( void )

}

Returns the list of SOAP functions.

Note: This function works only in WSDL mode.

Return Values

The list of SOAP functions.

Examples

Example 1. SoapClient->__getFunctions() example

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




<SoapClient->__doRequest()SoapClient->__getLastRequest()>
Last updated: Tue, 19 Sep 2006