gringlas / go-client
用于GO API(https://www.general-overnight.com)的SoapClient
0.2.4
2020-05-12 06:57 UTC
Requires
- php: ^7.0
This package is auto-updated.
Last update: 2024-09-12 17:37:05 UTC
README
用于GO API的SoapClient(https://www.general-overnight.com)。
如何使用
只需创建GoClient类的对象。
$wdsl = "Path/to/wdsl";
$options = [
'login' => 'yourGoLoginName',
'password' => 'yourGoPassword',
...
# pass other options for SoapCLient as noted in https://php.ac.cn/manual/de/soapclient.soapclient.php
];
$goClient = new GoClient($wdsl, $options);