SoapClient::__getLastRequest
(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"; ?> | |
Смотрите также SoapClient::SoapClient().