最近由于业务所需,对接了微信H5支付,然而微信支付对这块并没有现成的demo可用,所以就必须自己老老实实对照开发文档去写咯!但这对于刚接触的童鞋来说,坑多多少少还是有的,所以寻思着把自己的经验分享出来,毕竟现成的用的还是多巴适的嘛!
好了,官方文档的那一套就不多说了,详情见官方文档。
在这里,我主要分成了三个文件:WxPay.Config.php(支付配置文件)、Weixin.class.php(支付类)以及PayMentController.class.php(支付文件)。
首先,WxPay.Config.php配置文件主要包含了商户appId、商户号、商家key、异步回调URL、支付场景信息,如下:
class WxPayConfig{ public static $appid = '微信支付的公众号appid'; public static $mchid = '微信支付分配的商户号'; public static $key = '微信商户自己设置的安全key'; public static $notify_url = '商户侧接收微信支付异步通知的URL'; public static $scene_info = '{"h5_info":{"type":"Wap","wap_url":" 发起微信H5支付H5的URL","wap_name":"支付"}}'; }
然后,封装Weixin.class.php支付类,主要调用统一下单Api,这里不多说了,直接上代码:
<?phprequire_once "lib/WxPay.Config.php";class Weixin{ /** * 微信H5下单付款 * @order 付款信息 * @bodys 付款内容 * */ function getCode($order,$bodys){ $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";//微信传参地址 //1.获取调用统一下单接口所需必备参数 $appid =WxPayConfig::$appid;//微信公众号appid $mch_id = WxPayConfig::$mchid;//微信支付商户号 $key = WxPayConfig::$key;//自己设置的微信商家key $out_trade_no = $order['order_sn'];//平台内部订单号 $nonce_str=MD5($out_trade_no);//随机字符串 $body = $bodys;//付款内容 $total_fee = $order['order_amount']*100;//付款金额,单位为分 $spbill_create_ip = getIP(); //获得用户设备IP $attach = 'weixinh5';//附加数据(自定义,在支付通知中原样返回) $notify_url = WxPayConfig::$notify_url; //异步回调地址,需外网可以直接访问 $trade_type = 'MWEB';//交易类型,微信H5支付时固定为MWEB $scene_info =WxPayConfig::$scene_info;//场景信息 //2.将参数按照key=value的格式,并按照参数名ASCII字典序排序生成字符串 $signA ="appid=$appid&attach=$attach&body=$body&mch_id=$mch_id&nonce_str=$nonce_str¬ify_url=$notify_url&out_trade_no=$out_trade_no&scene_info=$scene_info&spbill_create_ip=$spbill_create_ip&total_fee=$total_fee&trade_type=$trade_type"; //3.拼接字符串 $strSignTmp = $signA."&key=$key"; //4.MD5加密后转换成大写 $sign = strtoupper(MD5($strSignTmp)); //5.拼接成所需XML格式 $post_data = "<xml> <appid>$appid</appid> <attach>$attach</attach> <body>$body</body> <mch_id>$mch_id</mch_id> <nonce_str>$nonce_str</nonce_str> <notify_url>$notify_url</notify_url> <out_trade_no>$out_trade_no</out_trade_no> <spbill_create_ip>$spbill_create_ip</spbill_create_ip> <total_fee>$total_fee</total_fee> <trade_type>$trade_type</trade_type> <scene_info>$scene_info</scene_info> <sign>$sign</sign> </xml>"; //6.以POST方式向微信传参,并取得微信返回的支付参数 $dataxml = httpRequest($url,'POST',$post_data); $objectxml = (array)simplexml_load_string($dataxml, 'SimpleXMLElement', LIBXML_NOCDATA); //将微信返回的XML转换成数组 return $objectxml; }}
新闻热点
疑难解答