(PHP 5 >= 5.0.1, PHP 7)
Returns the SOAP headers from the last response
public string SoapClient::__getLastResponseHeaders ( void )
Returns the SOAP headers from the last response.
Note:
This function only works if the SoapClient object was created with the trace option set to
TRUE
.
Returns:
The last SOAP response headers.
Examples:
SoapClient::__getLastResponse() example
1 2 3 4 5 | <?php $client = SoapClient( "some.wsdl" , array ( 'trace' => 1)); $result = $client ->SomeFunction(); echo "RESPONSE HEADERS:\n" . $client ->__getLastResponseHeaders() . "\n" ; ?> |
See also:
SoapClient::__getLastRequestHeaders() -
Please login to continue.