PHP 8.4.0 RC4 available for testing

SoapServer::__getLastResponse

(PHP 8 >= 8.4)

SoapServer::__getLastResponseReturns last SOAP response

Опис

public SoapServer::__getLastResponse(): ?string

Returns the XML sent in the last SOAP response.

Зауваження: This method works only if the SoapServer object was created with the trace option set to true.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

The last SOAP response, as an XML string.

Приклади

Приклад #1 SoapServer::__getLastResponse() example

<?php
$server
= SoapServer("some.wsdl", ["trace" => 1]);
$server->handle();
echo
"Response:\n" . $server->__getLastResponse() . "\n";
?>
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top