這篇文章帶給大家的內容是關於php對微信支付的回呼異步處理過程,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
微信支付回呼處理分為
1.同步
2.異步
這裡微信官方推薦使用第二種
php對微信回調異步處理
//获取返回的xml $testxml = file_get_contents("php://input"); //将xml转化为json格式 $jsonxml = json_encode(simplexml_load_string($testxml, 'SimpleXMLElement', LIBXML_NOCDATA)); //转成数组 $result = json_decode($jsonxml, true); if($result){ //如果成功返回了 if($result['return_code'] == 'SUCCESS' && $result['result_code'] == '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" }
其中
"result_code": "SUCCESS", "return_code": "SUCCESS",
是判斷使用者是否已支付的依據
相關推薦:
php微信支付(僅Jsapi支付)詳細步驟.----僅適合第一次做微信開發的程式設計師
#以上是php對微信支付的回呼非同步處理過程的詳細內容。更多資訊請關注PHP中文網其他相關文章!