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


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