赞
踩
我们已经知道,微信无论是微信内置JSAPI支付、H5外部浏览器支付、扫码支付,都需要通过异步回调接收支付结果。
本文简介如何获取微信支付通知。
仅需要一个在之前设置好的回调地址的方法里写上如下:
- //处理微信支付回调
- public function notify(){
-
- $testxml = file_get_contents("php://input");
-
- $jsonxml = json_encode(simplexml_load_string($testxml, 'SimpleXMLElement', LIBXML_NOCDATA));
-
- $result = json_decode($jsonxml, true);//转成数组,
- if($result){
- //如果成功返回了
- $out_trade_no = $result['out_trade_no'];
- if($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS'){
- //执行业务逻辑
- }
- }
- }
对后台通知交互时,如果微信收到商户的应答不是成功或超时,微信认为通知失败,
微信会通过一定的策略定期重新发起通知,尽可能提高通知的成功率,但微信不保证通知最终能成功。
(通知频率为15/15/30/180/1800/1800/1800/1800/3600,单位:秒)
结束微信重新通知用代码:echo 'SUCCESS';
附上:
微信支付返回的xml转化为json格式如下:
- {
- "appid": "12345",
- "attach": "pay",
- "bank_type": "CFT",
- "cash_fee": "1",
- "fee_type": "CNY",
- "is_subscribe": "Y",
- "mch_id": "12345",
- "nonce_str": "dZYFpaDYRpF5rwhv",
- "openid": "onhwF1hiutUySKCsrV21A6MCtT5Q",
- "out_trade_no": "SH201808222055598628",
- "result_code": "SUCCESS",
- "return_code": "SUCCESS",
- "sign": "5A019F52BEF1C3A98AE0F1FF29D01574",
- "time_end": "20180822205606",
- "total_fee": "1",
- "trade_type": "MWEB",
- "transaction_id": "4200000171201808221550954201"
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。