mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
修改测试
This commit is contained in:
parent
eca01d957b
commit
8e532f25c7
@ -25,11 +25,12 @@ try {
|
|||||||
$payment = \WePayV3\Order::instance($config);
|
$payment = \WePayV3\Order::instance($config);
|
||||||
|
|
||||||
// 4. 组装支付参数
|
// 4. 组装支付参数
|
||||||
|
$order = (string)time();
|
||||||
$result = $payment->create('app', [
|
$result = $payment->create('app', [
|
||||||
'appid' => $config['appid'],
|
'appid' => $config['appid'],
|
||||||
'mchid' => $config['mch_id'],
|
'mchid' => $config['mch_id'],
|
||||||
'description' => '商品描述',
|
'description' => '商品描述',
|
||||||
'out_trade_no' => (string)time(),
|
'out_trade_no' => $order,
|
||||||
'notify_url' => 'https://thinkadmin.top',
|
'notify_url' => 'https://thinkadmin.top',
|
||||||
'amount' => ['total' => 2, 'currency' => 'CNY'],
|
'amount' => ['total' => 2, 'currency' => 'CNY'],
|
||||||
]);
|
]);
|
||||||
@ -38,6 +39,25 @@ try {
|
|||||||
echo "\n--- 创建支付参数 ---\n";
|
echo "\n--- 创建支付参数 ---\n";
|
||||||
var_export($result);
|
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) {
|
} catch (\Exception $exception) {
|
||||||
// 出错啦,处理下吧
|
// 出错啦,处理下吧
|
||||||
echo $exception->getMessage() . PHP_EOL;
|
echo $exception->getMessage() . PHP_EOL;
|
||||||
|
@ -64,6 +64,25 @@ try {
|
|||||||
// 'trade_state_desc' => '订单未支付',
|
// '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) {
|
} catch (\Exception $exception) {
|
||||||
// 出错啦,处理下吧
|
// 出错啦,处理下吧
|
||||||
echo $exception->getMessage() . PHP_EOL;
|
echo $exception->getMessage() . PHP_EOL;
|
||||||
|
@ -57,6 +57,25 @@ try {
|
|||||||
// 'trade_state_desc' => '订单未支付',
|
// '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) {
|
} catch (\Exception $exception) {
|
||||||
// 出错啦,处理下吧
|
// 出错啦,处理下吧
|
||||||
echo $exception->getMessage() . PHP_EOL;
|
echo $exception->getMessage() . PHP_EOL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user