(PHP 5, PHP 7, PHP 8)
SoapClient::__getLastRequestHeaders — Returns the SOAP headers from the last request
Returns the SOAP headers from the last request.
Зауваження:
This function only works if the SoapClient object was created with the
trace
option set totrue
.
У цієї функції немає параметрів.
The last SOAP request headers.
Приклад #1 SoapClient::__getLastRequestHeaders() example
<?php
$client = SoapClient("some.wsdl", array('trace' => 1));
$result = $client->SomeFunction();
echo "REQUEST HEADERS:\n" . $client->__getLastRequestHeaders() . "\n";
?>