From adff2b721afb1ad6ab30774cc0c4bcd94d7fab4c Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Fri, 13 Dec 2024 22:48:20 +0800 Subject: [PATCH] y --- Application/Sdk/Controller/PayH5Controller.class.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Application/Sdk/Controller/PayH5Controller.class.php b/Application/Sdk/Controller/PayH5Controller.class.php index c7063a5..cecdc4e 100644 --- a/Application/Sdk/Controller/PayH5Controller.class.php +++ b/Application/Sdk/Controller/PayH5Controller.class.php @@ -1611,11 +1611,12 @@ class PayH5Controller extends BaseController{ // if (get_wx_pay_type() == 0) { if ($pay_info['channel'] == 2) { if ($pay_conf['partner'] == '1699330320') { + OuterApi::log("begin"); $params = [ 'order_no' => $request['pay_order_number'], - 'user_id' => $request['user_id'], + 'user_id' => (int)$request['user_id'], 'user_account' => $request['user_account'], - 'game_id' => $request['game_id'], + 'game_id' => (int)$request['game_id'], 'game_name' => $request['game_name'], 'server_id' => $request['server_id'], 'server_name' => $request['server_name'], @@ -1625,7 +1626,7 @@ class PayH5Controller extends BaseController{ 'pay_amount' => (int)($pay_amount*100), 'notify_url' => "http://" . $_SERVER['HTTP_HOST'] . "/callback.php/Notify/outer_callback", 'return_url' => urlencode(C('PAY_DOMAIN')."sdk.php/Spend/paycallback/orderno/{$request['pay_order_number']}/game_id/{$request['game_id']}/paytype/weixinpay"), - 'promote_id' => $request['promote_id'], + 'promote_id' => (int)$request['promote_id'], 'promote_account' => $request['promote_account'], 'client_ip' => $request['spend_ip'], 'pay_type' => 'wxpay-h5'