1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- require_once __DIR__ . '/../../vendor/autoload.php';
- date_default_timezone_set('Asia/Shanghai');
- $wxConfig = require_once __DIR__ . '/../wxconfig.php';
- $params = [
- 'bill_date' => '20200201',
- 'bill_type' => 'ALL',
- ];
- try {
- $client = new \Payment\Client(\Payment\Client::WECHAT, $wxConfig);
- $res = $client->billDownload($params);
- } catch (InvalidArgumentException $e) {
- echo $e->getMessage();
- exit;
- } catch (\Payment\Exceptions\GatewayException $e) {
- echo $e->getMessage();
- exit;
- } catch (\Payment\Exceptions\ClassNotFoundException $e) {
- echo $e->getMessage();
- exit;
- }
- var_dump($res);
|