1
0
mirror of https://gitee.com/zoujingli/WeChatDeveloper.git synced 2025-04-06 03:58:03 +08:00

修改测试

This commit is contained in:
邹景立 2023-05-16 10:16:16 +08:00
parent eca01d957b
commit 8e532f25c7
3 changed files with 59 additions and 1 deletions

@ -25,11 +25,12 @@ try {
$payment = \WePayV3\Order::instance($config);
// 4. 组装支付参数
$order = (string)time();
$result = $payment->create('app', [
'appid' => $config['appid'],
'mchid' => $config['mch_id'],
'description' => '商品描述',
'out_trade_no' => (string)time(),
'out_trade_no' => $order,
'notify_url' => 'https://thinkadmin.top',
'amount' => ['total' => 2, 'currency' => 'CNY'],
]);
@ -38,6 +39,25 @@ try {
echo "\n--- 创建支付参数 ---\n";
var_export($result);
// 创建退款
$out_refund_no = strval(time());
$result = $payment->createRefund([
'out_trade_no' => $order,
'out_refund_no' => $out_refund_no,
'amount' => [
'refund' => 2,
'total' => 2,
'currency' => 'CNY'
]
]);
echo "\n--- 创建退款订单 ---\n";
var_export($result);
$result = $payment->queryRefund($out_refund_no);
echo "\n--- 查询退款订单 ---\n";
var_export($result);
} catch (\Exception $exception) {
// 出错啦,处理下吧
echo $exception->getMessage() . PHP_EOL;

@ -64,6 +64,25 @@ try {
// 'trade_state_desc' => '订单未支付',
// );
// 创建退款
$out_refund_no = strval(time());
$result = $payment->createRefund([
'out_trade_no' => $order,
'out_refund_no' => $out_refund_no,
'amount' => [
'refund' => 2,
'total' => 2,
'currency' => 'CNY'
]
]);
echo "\n--- 创建退款订单2 ---\n";
var_export($result);
$result = $payment->queryRefund($out_refund_no);
echo "\n--- 查询退款订单2 ---\n";
var_export($result);
} catch (\Exception $exception) {
// 出错啦,处理下吧
echo $exception->getMessage() . PHP_EOL;

@ -57,6 +57,25 @@ try {
// 'trade_state_desc' => '订单未支付',
// );
// 创建退款
$out_refund_no = strval(time());
$result = $payment->createRefund([
'out_trade_no' => $order,
'out_refund_no' => $out_refund_no,
'amount' => [
'refund' => 2,
'total' => 2,
'currency' => 'CNY'
]
]);
echo "\n--- 创建退款订单2 ---\n";
var_export($result);
$result = $payment->queryRefund($out_refund_no);
echo "\n--- 查询退款订单2 ---\n";
var_export($result);
} catch (\Exception $exception) {
// 出错啦,处理下吧
echo $exception->getMessage() . PHP_EOL;