You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
971 B
41 lines
971 B
12 months ago
|
<?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';
|
||
|
|
||
|
// 以下参数二选一
|
||
|
$data = [
|
||
|
'trans_no' => '1580651298',
|
||
|
'transaction_id' => '20200202110070001502680000399648',
|
||
|
];
|
||
|
|
||
|
// 使用
|
||
|
try {
|
||
|
$client = new \Payment\Client(\Payment\Client::ALIPAY, $aliConfig);
|
||
|
$res = $client->transferQuery($data);
|
||
|
} 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);
|