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: Fri, 25 May 2012

view this page in

SoapClient::__getLastRequestHeaders

(PHP 5 >= 5.0.1)

SoapClient::__getLastRequestHeadersReturns the SOAP headers from the last request

Descrierea

public string SoapClient::__getLastRequestHeaders ( void )

Returns the SOAP headers from the last request.

Notă:

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

Parametri

Această funcție nu are parametri.

Valorile întoarse

The last SOAP request headers.

Exemple

Example #1 SoapClient::__getLastRequest() example

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

Vedeți de asemenea



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