update : 2015.11.03
php.shukuma.com

검색:
 
 
Handles a SOAP request

SoapServer::handle

(PHP 5 >= 5.0.1)

SoapServer::handleHandles a SOAP request

설명

public void SoapServer::handle ([ string $soap_request ] )

Processes a SOAP request, calls necessary functions, and sends a response back.

인수

soap_request

The SOAP request. If this argument is omitted, the request is assumed to be in the raw POST data of the HTTP request.

반환값

값을 반환하지 않습니다.

예제

Example #1 SoapServer::handle() example

<?php
function test($x)
{
    return 
$x;
}

$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();
?>

참고