码迷,mamicode.com
首页 > 微信 > 详细

thinkphp5.0 中简单处理微信支付异步通知

时间:2019-10-18 19:03:18      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:pen   json   isp   lib   通知   date   code   think   cti   

 1 public function wx_notify(){
 2         $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
 3         libxml_disable_entity_loader(true);
 4         $xml = json_decode(json_encode(simplexml_load_string($postStr, ‘SimpleXMLElement‘, LIBXML_NOCDATA)), true);        
 5         if($xml[‘out_trade_no‘]){
 6             $rs = Db::name(‘order_jiaoche‘)->where(array(‘order_sn‘=>$xml[‘out_trade_no‘]))->find();
 7             if($rs){
 8                 Db::name(‘order_jiaoche‘)->where(array(‘order_sn‘=>$xml[‘out_trade_no‘]))->update(array(‘ispay‘=>1));
 9                 echo ‘success‘;
10             }
11         }        
12          /*
13          调试所用 
14          $fp = fopen(‘notify.txt‘,‘a+‘); 
15          fwrite($fp,"\n _______GET________");   
16          fwrite($fp,var_export($xml,true));     
17          fwrite($fp,"\n ________postObj________");
18          fwrite($fp,var_export($xml,true));
19          fwrite($fp,‘【 Now 】:  ‘. date("Y-m-d H:i:s") ."\n");
20          fclose($fp); 
21          print_r($xml);
22          */
23     }

 

thinkphp5.0 中简单处理微信支付异步通知

标签:pen   json   isp   lib   通知   date   code   think   cti   

原文地址:https://www.cnblogs.com/luojie-/p/11699718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!