SoapClient::__getLastResponseHeaders

(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
<?php
$client = SoapClient("some.wsdl", array('trace' => 1));
$result = $client->SomeFunction();
echo "RESPONSE HEADERS:\n" . $client->__getLastResponseHeaders() . "\n";
?>

See also:

SoapClient::__getLastRequestHeaders() -

SoapClient::__getLastRequest() -

SoapClient::__getLastResponse() -

doc_php
2016-02-24 16:14:14
Comments
Leave a Comment

Please login to continue.