您好,欢迎访问一九零五行业门户网

一文详解PHP如何接入微信支付分(代码示例)

一、微信支付分介绍及开通
产品介绍:https://pay.weixin.qq.com/wiki/doc/apiv3/open/pay/chapter3_1_0.shtml接入前准备:https://pay.weixin.qq.com/wiki/doc/apiv3/open/pay/chapter3_1_1.shtml测试号配置:https://pay.weixin.qq.com/wiki/doc/apiv3/open/pay/chapter3_1_5.shtml二、免确认模式开发
参考网址:https://pay.weixin.qq.com/wiki/doc/apiv3/open/pay/chapter3_1_3.shtml
步骤1 用户在商户侧下单购买产品或服务,此时,我们需要先对用户的授权状态进行查询步骤2 引导用户开启授权服务步骤3 创建支付分订单步骤4 商户为用户提供服务,待服务结束后,商户调用完结订单接口完结当前订单。步骤5 收到用户扣款成功通知,业务流程结束三、sdk相关
官方文档:https://pay.weixin.qq.com/wiki/doc/apiv3/wechatpay/wechatpay6_0.shtmlwechatpay-php(推荐):https://github.com/wechatpay-apiv3/wechatpay-php四、代码示例
/**     * notes: 步骤1 用户在商户侧下单购买产品或服务,此时,我们需要先对用户的授权状态进行查询     * user: xxx     * datetime: 2021/7/27 9:59     */    public function getauthstatus(string $cid)    {        $openid = $this->getopenid($cid);        if (!$openid) {            return false;        }        try {            $resp = $this->instance->v3->payscore->permissions->openid->{'{openid}'}                ->get(                    [                        'query'  => [                            'appid'      => $this->appid,                            'service_id' => $this->serviceid,                        ],                        // uri_template 字面量参数                        'openid' => $openid,                    ]                );            $res = json_decode($resp->getbody()->getcontents(), true);            if ($res['authorization_state'] == 'available') {                return true;            } else {                return false;            }        } catch (\exception $e) {            return false;            /*echo($e->getresponse()->getstatuscode());            // 进行错误处理            echo $e->getmessage()->getreasonphrase(), php_eol;            if ($e instanceof \psr\http\message\responseinterface && $e->hasresponse()) {                echo $e->getresponse()->getstatuscode() . ' ' . $e->getresponse()->getreasonphrase(), php_eol;                echo $e->getresponse()->getbody();            }*/        }    }
/**     * notes:步骤2 引导用户开启授权服务-获取预授权码     * user: xxx     * datetime: 2021/7/27 18:37     */    public function openauthstatus()    {        try {            $resp = $this->instance->v3->payscore->permissions->post(                [                    'json' => [                        'service_id'         => $this->serviceid,                        'appid'              => $this->appid,                        'authorization_code' => $this->getrandstr(12), // 授权协议号,类似订单号                        //'notify_url'         => 'https://weixin.qq.com/',                    ]                ]            );            $res = json_decode($resp->getbody(), true);            return $res['apply_permissions_token'];        } catch (\exception $e) {            // 进行错误处理            /*if ($e->hasresponse()) {                echo $e->getresponse()->getbody();            }*/            return false;        }    }
/**     * notes: 步骤3 创建支付分订单     * user: xxx     * datetime: 2021/7/27 19:21     * @param string $cid     用户id     * @param string $ordersn 订单号     */    public function makeorder(string $cid, string $ordersn)    {        // 订单信息        ....        $openid = $this->getopenid($cid);        if (!$openid) {            return [                'code' => -1,                'msg'  => 'openid不可以为空',            ];        }        // 异步通知地址,有时候发现莫名的变成了localhost,这里先固定        $notiryurl = route('api.v1.wxpaypointsnotify');        $json = [            'out_order_no'         => $ordersn,                                                        // 商户服务订单号            'appid'                => $this->appid,                                                    // 应用id            'service_id'           => $this->serviceid,                                                // 服务id            'service_introduction' => '换电费用',                                                          // 服务信息,用于介绍本订单所提供的服务 ,当参数长度超过20个字符时,报错处理            'time_range'           => [                'start_time' => $starttime, //'20210729160710',            ],            'risk_fund'            => [                'name'   => 'estimate_order_cost',         // 风险金名称                'amount' => 300,                           // 风险金额 数字,必须>0(单位分)            ],            'attach'               => $ordersn,// 商户数据包            'notify_url'           => $notiryurl,            'openid'               => $openid,// 用户标识            'need_user_confirm'    => false,// 是否需要用户确认        ];        try {            $resp = $this->instance->v3->payscore->serviceorder->post(                [                    'json' => $json                ]            );            $res = json_decode($resp->getbody(), true);            // 入库支付分订单            ...            return [                'code' => 0,                'msg'  => '支付分订单创建完成',            ];        } catch (\exception $e) {            // 进行错误处理            if ($e->hasresponse()) {                $body = $e->getresponse()->getbody();                if ($body) {                    return [                        'code' => -1,                        'msg'  => (string)$body,                    ];                }            }            return '';        }    }
完结支付分订单、取消支付分订单、查询支付分订单 类似,这里不再写出来。
/**     * notes: 异步通知     * user: xxx     * datetime: 2021/8/3 14:20     */    public function notify()    {        // 获取返回的信息        $responsebody = file_get_contents(php://input);        $responsearr = json_decode($responsebody, true);        if ($responsearr) {            $res = aesgcm::decrypt($responsearr['resource']['ciphertext'], 'xxxapi密钥', $responsearr['resource']['nonce'], $responsearr['resource']['associated_data']);            $resarr = json_decode($res, true);            if ($resarr) {                // 记录日志                ...                // 业务逻辑处理                ...                // 订单日志记录               ...            } else {                return [                    'code' => -1,                    'msg'  => '解析有误',                ];            }        } else {            return [                'code' => -1,                'msg'  => 'nothing post',            ];        }    }
五、注意事项严格遵循文档中的参数要求,出现问题第一时间比较传入参数和官方示例的区别支付分订单必须取消,或完结
推荐学习:《php视频教程》
以上就是一文详解php如何接入微信支付分(代码示例)的详细内容。
其它类似信息

推荐信息