update : 2015.11.03
php.shukuma.com

검색:
 
 
Adds one or more functions to handle SOAP requests

SoapServer::addFunction

(PHP 5 >= 5.0.1)

SoapServer::addFunctionAdds one or more functions to handle SOAP requests

설명

public void SoapServer::addFunction ( mixed $functions )

Exports one or more functions for remote clients

인수

functions

To export one function, pass the function name into this parameter as a string.

To export several functions, pass an array of function names.

To export all the functions, pass a special constant SOAP_FUNCTIONS_ALL.

Note:

functions must receive all input arguments in the same order as defined in the WSDL file (They should not receive any output parameters as arguments) and return one or more values. To return several values they must return an array with named output parameters.

반환값

값을 반환하지 않습니다.

예제

Example #1 SoapServer::addFunction() example

<?php

function echoString($inputString)
{
    return 
$inputString;
}

$server->addFunction("echoString");

function 
echoTwoStrings($inputString1$inputString2)
{
    return array(
"outputString1" => $inputString1,
                 
"outputString2" => $inputString2);
}
$server->addFunction(array("echoString""echoTwoStrings"));

$server->addFunction(SOAP_FUNCTIONS_ALL);

?>

참고