SoapClient->__getFunctions()

(PHP 5 >= 5.0.1)

SoapClient->__getFunctions() — Retourne une liste de fonctions SOAP

Description

class SoapClient {
array __getFunctions ( void )
}

Retourne une liste de fonctions SOAP.

Note: Cette fonction fonctionne uniquement en mode WSDL.

Valeurs de retour

La liste des fonctions SOAP.

Exemples

Exemple 2447. Exemple avec SoapClient->__getFunctions()

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

Voir aussi

SoapClient->__construct()