echo '提供的方法';dump($client->__getFunctions());echo '数据结构';dump($client->__getTypes());
ディスカッションへの返信 (解決策)
AdcServicesResponse AdcServices( AdcServices $parameters)
は、AdcServices には AdcServices 型のパラメーターが必要であることを意味します struct AdcServices { NGEC リクエスト AdcServices {
string OrigDomain;
string BIPVer;
string ECUserPwd; ProcessTime;
Response Response = {
string RspCode;
string RspDesc; },
string SvcCont;
$client- の場合、連想配列が使用されます>AdcServices($ar)
AdcServicesResponse AdcServices( AdcServices $parameters)
は、AdcServices が AdcServices タイプのパラメータを必要とすることを意味します
struct AdcServices {
NGEC request
}
テーブルは AdcServices で、NGEC タイプのパラメータがあります。 request
NGEC を見つけて取得し、
AdcServices {
string OrigDomain;
string BIPVer;
string ECCode;
文字列ECUserPwd ; use use using using using using using using using ‐off ‐ off ‐ return ‐ ‐‐‐‐‐‐と
}
phpにはstruct構造がないので、代わりに連想配列が使われます
$ar = array( 'request' => array( 'OrigDomain' => '', 'BIPCode' => '', 'BIPVer' => '', 'TransIDO' => '', 'Areacode' => '', 'ECCode' => '', 'ECUserName' => '', 'ECUserPwd' => '', 'ProcessTime' => '', 'Response' => array( 'RspCode' => '', 'RspDesc' => '', ), 'SvcCont' => '', ));が呼ばれるとき
先輩、愛してる~~~