©
This document uses PHP Chinese website manual Release
(PHP 5 >= 5.0.1)
SoapClient::__getLastRequestHeaders — Returns the SOAP headers from the last request
Returns the SOAP headers from the last request.
Note:
This function only works if the SoapClient object was created with the trace option set to
TRUE
.
此函数没有参数。
The last SOAP request headers.
Example #1 SoapClient::__getLastRequest() example
<?php
$client = SoapClient ( "some.wsdl" , array( 'trace' => 1 ));
$result = $client -> SomeFunction ();
echo "REQUEST HEADERS:\n" . $client -> __getLastRequestHeaders () . "\n" ;
?>
[#1] mischa molhoek [2015-06-02 08:48:34]
it seems to me that is does not return the SOAP headers as it states in the explanation, but the request headers....