做微信支付,需要的条件是:1、开通微信服务号,2、开通微信商户后台申请支付方式(公众号支付、h5支付、app支付、小程序支付)
(注意微信服务号里面的配置以及商户后台 安全目录 的设置,不然即使你写的没错误,也调用不成功)
公众号h5页面写法: (购物车提交–我们上一步已经生成了订单,订单时的结构表里面已经有记录了)
order.php?act=wxpay&order_sn=888888 ($ur_id可以从ssion获取到)
//查询订单详情 $orderinfo = orderdetailinfo($order_sn,$ur_id); var_dump($orderinfo); //测试支付金额 if($ur_id=="24") $orderinfo['total_fee']=0.01; //调用统一下单api的请求参数 $jsapiparameters = wxunifiedorder($orderinfo['order_sn'],$orderinfo['total_fee']*100);生产管理职责 $smarty->assign('jsapiparameters',$jsapiparameters); $smarty->display('wxpay.html');//调用微信统一下单api的js参数function wxunifiedorder($order_sn,$total_fee){ require_once root_path . "wxpay/lib/wxpay.api.php"; require_once root_path . "wxpay/example/wxpay.jsapipay.php"; //require_once 'log.php'; //①、获取用户openid $tools = new jsapipay(); $openid = $tools->getopenid(); //②、统一下单 $input = new wxpayunifiedorder(); $input->topenid($openid); $input->tbody("xxx公众号购买"); $input->tattach("xxx公众号购买产品$order_sn"); 学习机构 $input->tout_trade_no($order_sn); $input->ttotal_fee($total_fee); $input->ttime_start(date("ymdhis")); $input->ttime_expire(date("ymdhis", time() + 600)); $input->tgoods_tag("xxx公众号购买"); $input->tnotify_url("http://xxx.com/wxshop/wxnotify.p李白最难超越的一首诗hp"); $input->ttrade_type("jsapi"); $order = wxpayapi::unifiedorder($input); //printf_info($order); $jsapiparameters = $tools->getjsapiparameters($order); //③、在支持成功回调通知中处理成功之后的事宜,见 notify.php /** * 注意: * 1、当你的回调地址不可访问的时候,回调通知会失败,可以通过查询订单来确认支付是否成功 * 2、jsapi支付时需要填入用户openid,wxpay.jsapipay.php中有获取openid流程 (文档可以参考微信公众平台“网页授权接口”, * 参考http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html) */ return $jsapiparameters;}
html页面(怎么调用jsapi,上一个页面的$jsapiparameters参数赋值到那块了)
<a class="next btn nd_pay" onclick="callpay()" >立即支付</a><script type="text/javascript"> //调用微信js api 支付 function jsapicall() { weixinjsbridge.invoke( 'getbrandwcpayrequest', {$jsapiparameters}, function(res){ if(res.err_msg == "get_brand_wcpay_request:ok" ){ layer.open({ content: '支付成功' ,skin: 'msg' ,time: 2 //2秒后自动关闭 }); } } ); } function callpay() { if (typeof weixinjsbridge == "undefined"){ if( document.addeventlistener ){ document.addeventlistener('weixinjsbridgeready', jsapicall, fal); }el if (document.attachevent){ document.attachevent('weixinjsbridgeready', jsapicall); document.attachevent('onweixinjsbridgeready', jsapicall); } }el{ jsapicall(); } }</script>
付款后通知地址:
<?phpdefine('in_ecs', true);require(dirname(__file__) . '/../../includes/init.php');ini_t('date.timezone','asia/shanghai');error_reporting(e_error);require_once "../lib/wxpay.api.php";//sdk有这个文件require_once '../lib/wxpay.notify.php';//sdk有这个文件require_once 'log.php';//sdk有这个文件//初始化日志$loghandler= new clogfilehandler("../logs/".date('y-m-d').'.log');$log = log::init($loghandler, 15);class paynotifycallback extends wxpaynotify{ //查询订单 public function queryorder($transaction_id) { $input = new wxpayorderquery(); $input->ttransaction_id($transaction_id); $result = wxpayapi::orderquery($input); log::debug("query:" . json_en怀念过去的文章code($result)); if(array_key_exists("return_code", $result) && array_key_exists("result_code", $result) && $result["return_code"] == "success" && $result["result_code"] == "success") { return true; } return fal; } //重写回调处理函数 public function notifyprocess($data, &$msg) { log::debug("1"); log::debug("call back:" . json_encode($data)); $notfiyoutput = array(); log::debug("2"); if(!array_key_exists("transaction_id", $data)){ $msg = "输入参数不正确"; return fal; } //查询订单,判断订单真实性 if(!$this->queryorder($data["transaction_id"])){ $msg = "订单查询失败"; return fal; } //如果成功,那么就更改订单状态 $res = $this->updateorder($data["out_trade_no"],$data["transaction_id"]); if($res) { return true; }el{ return fal; } } public function updateorder($order_sn,$trade_no) {//更改订单状态--设置已付款 /* 取得订单信息 */ $sql = 'lect order_id, ur_id, order_sn, trade_no, consignee, address, tel, shipping_id, extension_code, extension_id, goods_amount ' . 'from t_order_info ' . " where order_sn = '$order_sn'"; $order = $globals['db']->getrow($sql); $sql = 'update t_order_info ' . " t order_status = '1', " . " confirm_time = '" . gmtime() . "', " . " pay_status = '2', " . " pay_id = '7', " . " pay_name = '微信支付', " . " pay_time = '".gmtime()."', " . " money_paid = order_amount," . " group_buy_status = group_buy_status+1," . " trade_no = '$trade_no' ". "where order_sn = '$order_sn'"; $res = $globals['db']->query($sql); if($res) { return true; }el{ return fal; } }}$notify = new paynotifycallback();//实例化$notify->handle(fal);//调用这个方法,将来就可以执行上面那个回调方法,并且,获取xml数据,验证签名,和最后的给微信输出xml,都可以完成//$resxml = "<xml><return_code><![cdata[success]]></return_code><return_msg><![cdata[ok]]></return_msg></xml> ";//echo $resxml;//log::debug($resxml);
本文发布于:2023-04-07 12:06:58,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/6c4111ad2769b13b530e41bd870a9bd2.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:微信支付和微信支付通知基于sdk的说明.doc
本文 PDF 下载地址:微信支付和微信支付通知基于sdk的说明.pdf
留言与评论(共有 0 条评论) |