(No version information available, might be only in CVS)
SoapServer->handle — SOAP リクエストを処理する
SOAP リクエストを処理し、必要な関数をコールし、レスポンスを返送します。 back.
値を返しません。
例1 いくつかの例
<?php
function test($x)
{
return $x;
}
$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();
?>