downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SoapClient::__getLastResponse> <SoapClient::__getLastRequest
[edit] Last updated: Sat, 07 Jan 2012

view this page in

SoapClient::__getLastRequestHeaders

(PHP 5 >= 5.0.1)

SoapClient::__getLastRequestHeadersReturns the SOAP headers from the last request

설명

public string SoapClient::__getLastRequestHeaders ( void )

Returns the SOAP headers from the last request.

Note:

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

인수

이 함수는 인수가 없습니다.

반환값

The last SOAP request headers.

예제

Example #1 SoapClient->__getLastRequest() example

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

참고



add a note add a note User Contributed Notes SoapClient::__getLastRequestHeaders
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites