Musical Palace
 
Modules
· Home
· Laura Magori Creations - Ploaia (The Rain)
· About Laura Magori (Laura Angey)
· Cv Laura Magori
· Diplome
· Duos
· Invited Artist: Alexander Zailer
· Laura Magori Audiochanel
· Laura Magori Creations -New Years Night
· Photos
· Search
· SL
· Statistics
· Stories Archive
· Wallpapers
La Playa



Quiero Ser



Someday My Prince Will Come



So This Is Love



Wanna Know What Love Is



And I Love You So



SoapServer->getFunctions()

SoapServer->getFunctions()

(no version information, might be only in CVS)

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

Description

class 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";
  }
}
?>

free php nuke theme by ethaidesign.com
Website Power by PHPNuke.org. PHPNuke Theme Design By Ethaidesign.com