SoapClient->__getLastRequest()

(no version information, might be only in CVS)

SoapClient->__getLastRequest() --  Returns last SOAP request

說明

class 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";
?>