PHP 8.3.4 Released!

SoapClient::__getLastRequestHeaders

(PHP 5, PHP 7, PHP 8)

SoapClient::__getLastRequestHeadersReturns the SOAP headers from the last request

说明

public SoapClient::__getLastRequestHeaders(): ?string

Returns the SOAP headers from the last request.

注意:

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

参数

此函数没有参数。

返回值

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";
?>

参见

add a note

User Contributed Notes 1 note

up
-11
mischa molhoek
8 years ago
it seems to me that is does not return the SOAP headers as it states in the explanation, but the request headers....
To Top