SoapClient->__getLastRequest

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

SoapClient->__getLastRequest Returns last SOAP request

Descrição

SoapClient
string __getLastRequest ( void )

Nota: This method works only if the SoapClient object was created with the trace option.

Valor Retornado

The last SOAP request.

Exemplos

Exemplo #1 SoapClient->__getLastRequest() example

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



User Contributed Notes
SoapClient->__getLastRequest
Omar Nabil
12-Nov-2008 12: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