(no version information, might be only in CVS)
SoapClient::__getLastRequest --
Returns last SOAP request
Description
string
SoapClient::__getLastRequest ( void )
This function works only with SoapClient which was created with
the trace option.
例子 1. SoapClient::__getLastRequest() example
<?php $client = SoapClient("some.wsdl", array('trace' => 1)); $result = $client->SomeFunction(...); echo "REQUEST:\n" . $client->__getLastRequest() . "\n"; ?>
|
|
See also
SoapClient::SoapClient().