zx/vendor/riverslei/payment/examples/cmb/bill.php

50 lines
1.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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');
$cmbConfig = require_once __DIR__ . '/../cmbconfig.php';
$params = [
'type' => 'trade', //trade交易账单refund退款账单默认是trade
// trade
'date' => time(),
'message_key' => time(),
// refund
'start_time' => strtotime('-2days'),
'end_time' => strtotime('-1days'),
'operator_id' => '111',
];
// 使用
try {
$client = new \Payment\Client(\Payment\Client::CMB, $cmbConfig);
$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);