SoapServer::__getLastResponse
(PHP 8 >= 8.4)
SoapServer::__getLastResponse — Returns last SOAP response
Description
Returns the XML sent in the last SOAP response.
Note: This method works only if the SoapServer object was created with the
traceoption set totrue.
Parameters
This function has no parameters.
Return Values
The last SOAP response, as an XML string.
Examples
Example #1 SoapServer::__getLastResponse() example
<?php
$server = SoapServer("some.wsdl", ["trace" => 1]);
$server->handle();
echo "Response:\n" . $server->__getLastResponse() . "\n";
?>↑ and ↓ to navigate • Enter to select • Esc to close • / to open