略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SoapClient::__getLastRequestHeaders

2024-05-03

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 noteadd a note

User Contributed Notes 1 note

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

官方地址:https://www.php.net/manual/en/soapclient.getlastrequestheaders.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3