downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<SoapServer->fault()SoapServer->handle()>
Last updated: Thu, 26 Jun 2008

SoapServer->getFunctions()

(PHP 5 >= 5.0.1)

SoapServer->getFunctions() — Returns list of defined functions

Description

SoapServer
array getFunctions ( void )

This method returns the list of all functions added by SoapServer->addFunction() or SoapServer->setClass().

Return Values

The list of all functions.

Examples

Example #1 Some examples

<?php
$server
= new SoapServer(NULL, array("uri" => "http://test-uri"));
$server->addFunction(SOAP_FUNCTIONS_ALL);
if (
$_SERVER["REQUEST_METHOD"] == "POST") {
 
$server->handle();
} else {
  echo
"This SOAP server can handle following functions: ";
 
$functions = $server->getFunctions();
  foreach(
$functions as $func) {
   echo
$func . "\n";
  }
}
?>



add a noteadd a note User Contributed Notes
Returns list of defined functions
There are no user contributed notes for this page.




<SoapServer->fault()SoapServer->handle()>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs