PHP 8.4.0 RC4 available for testing

SoapClient::__getLastRequestHeaders

(PHP 5, PHP 7, PHP 8)

SoapClient::__getLastRequestHeadersReturns the SOAP headers from the last request

Descrizione

public SoapClient::__getLastRequestHeaders(): ?string

Returns the SOAP headers from the last request.

Nota:

This function only works if the SoapClient object was created with the trace option set to true.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The last SOAP request headers.

Esempi

Example #1 SoapClient::__getLastRequestHeaders() example

<?php
$client
= SoapClient("some.wsdl", array('trace' => 1));
$result = $client->SomeFunction();
echo
"REQUEST HEADERS:\n" . $client->__getLastRequestHeaders() . "\n";
?>

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top