SoapClient->__getLastResponse()
(no version information, might be only in CVS)
SoapClient->__getLastResponse() --
直近の SOAP レスポンスを返す
説明
class
SoapClient {
string
__getLastResponse ( void )
}
注意:
このメソッドは、オプション trace を指定して
SoapClient が作成されている場合のみ使用可能です。
例
例 1. SoapClient->__getLastResponse() の例
<?php $client = SoapClient("some.wsdl", array('trace' => 1)); $result = $client->SomeFunction(); echo "RESPONSE:\n" . $client->__getLastResponse() . "\n"; ?>
|
|