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

search for in the

SoapClient->__getLastRequestHeaders> <SoapClient->__getFunctions
Last updated: Fri, 28 Nov 2008

view this page in

SoapClient->__getLastRequest

(No version information available, might be only in CVS)

SoapClient->__getLastRequest Returns last SOAP request

Описание

SoapClient
string __getLastRequest ( void )

Замечание: This method works only if the SoapClient object was created with the trace option.

Возвращаемые значения

The last SOAP request.

Примеры

Пример #1 SoapClient->__getLastRequest() example

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



add a note add a note User Contributed Notes
SoapClient->__getLastRequest
Omar Nabil
12-Nov-2008 06:14
the getLastResult function doesn't require that the server answers.
as my browser handled and hided the xml code I thought the function doesn't return the last request

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