SoapServer::handle

(PHP 5, PHP 7, PHP 8)

SoapServer::handleSOAP リクエストを処理する

説明

public SoapServer::handle(?string $request = null): void

SOAP リクエストを処理し、必要な関数をコールし、レスポンスを返送します。

パラメータ

request

SOAP リクエスト。もし引数が省略された場合、 HTTP リクエストで POST されたデータの中にリクエストがあるとみなします。

戻り値

値を返しません。

変更履歴

バージョン 説明
8.0.0 request は、nullable になりました。

例1 SoapServer::handle() の例

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

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

参考

関連キーワード:  リクエスト, SoapServer, 処理, handle, request, もし, 参考, able, バージョン, 履歴