downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SoapClient::__getLastRequest> <SoapClient::__doRequest
Last updated: Fri, 14 Aug 2009

view this page in

SoapClient::__getFunctions

(PHP 5 >= 5.0.1)

SoapClient::__getFunctionsRetourne une liste de fonctions SOAP publiées

Description

public void SoapClient::__getFunctions ( void )

SoapClient::__getFunctions() retourne une liste de fonctions SOAP publiées.

Note: Cette fonction n'est disponible qu'en mode WSDL.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

La liste des fonctions SOAP.

Exemples

Exemple #1 Exemple avec SoapClient::__getFunctions()

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

Voir aussi



add a note add a note User Contributed Notes
SoapClient::__getFunctions
hasegeli at arebt dot com
02-Jun-2009 07:19
This function did not work if schema is not in wsdl file.
Dougal Matthews
17-Jul-2008 08:24
example for amazon webservice

<?php

$wsdl_url
=
 
"http://soap.amazon.com/schemas3/AmazonWebServices.wsdl";
$client     = new SoapClient($wsdl_url);
var_dump($client->__getFunctions());

?>

SoapClient::__getLastRequest> <SoapClient::__doRequest
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites