123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /*
- * The file is part of the payment lib.
- *
- * (c) Leo <dayugog@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- require_once __DIR__ . '/../../vendor/autoload.php';
- date_default_timezone_set('Asia/Shanghai');
- $aliConfig = require_once __DIR__ . '/../aliconfig.php';
- // 订单信息
- $params = [
- 'bill_type' => 'trade',
- //'bill_date' => date('Y-m-d', strtotime('-10 days')),
- 'bill_date' => '2020-01-15'
- ];
- // 使用
- try {
- $client = new \Payment\Client(\Payment\Client::ALIPAY, $aliConfig);
- $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;
- } catch (Exception $e) {
- echo $e->getMessage();
- exit;
- }
- var_dump($res);
|