真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Thinkphp5框架集成微信掃碼支付方法

Thinkphp5框架集成微信掃碼支付方法,Thinkphp框架用的人非常多,整合微信掃碼支付的方法分享出來與大家一起學(xué)習(xí)!

在新區(qū)等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作專業(yè)公司,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷推廣,外貿(mào)網(wǎng)站建設(shè),新區(qū)網(wǎng)站建設(shè)費用合理。

Thinkphp5框架集成微信掃碼支付方法

打開首頁生成訂單,并顯示支付二維碼

public function index() { 
        $wechat = new Wechat(); 
       
 $data['order'] = date('Ymd') . substr(implode(NULL, array_map('ord', 
str_split(substr(uniqid(), 7, 13), 1))), 0, 8); //訂單號 
        $data['set'] = "測試"; 
        $data['money'] = 0.01; 
        $data['userid'] = 1; 
       
 if (!Db::execute('INSERT INTO 
order_sucaihuo(uid,order_no,order_money,addtime) VALUES(?,?,?,?)', 
[$data['userid'], $data['order'], $data['money'], time()])) { 
            return '失敗,請重試!'; 
        } 
        $url = $wechat->send($data); 
        $data['url'] = 'http://paysdk.weixin.qq.com/example/qrcode.php?data=' . $url; 
       
 // return ''; 
        return view('index', $data); 
    }


回調(diào)驗證并更改訂單狀態(tài)

if ($WeChatNotify->notify($xml) == true) { 
            file_put_contents('./time.txt', date("Y-m-d H:i:s")); 
            //$WeChatNotify->getValues()  獲取到xml轉(zhuǎn)換為數(shù)組的鍵值對 
            //out_trade_no對應(yīng)的商戶訂單號 
            //total_fee為訂單金額的一百的倍數(shù)  也就是total_fee/100為支付的金額 
            //還有幾個鍵值對需要用的話可以打印出來看  都是微信官方定義的 
            $data = $WeChatNotify->getValues(); 
            file_put_contents('./data.txt', json_encode($data)); 
            if (empty($data) || empty($data['out_trade_no']) || empty($data['total_fee'])) { 
                return; 
            } 
            $orderData = Db::query("SELECT * FROM order_sucaihuo WHERE order_no='" . $data['out_trade_no'] . "' AND state=0"); 
            if (empty($orderData)) { 
                return; 
            } 
            $orderData = $orderData[0]; 
            if ($orderData['order_money'] != $data['total_fee'] / 100) { 
                return; 
            } 
            $orderResult = Db::execute("UPDATE order_sucaihuo SET state=1,update_time=" . time() . ""); 
            if (!$orderResult) { 
                return; 
            } 
            return "SUCCESS"; 
        }

歡迎轉(zhuǎn)載,但請注明出處:http://www.sucaihuo.com/php/3261.html


本文名稱:Thinkphp5框架集成微信掃碼支付方法
文章地址:http://weahome.cn/article/geeeho.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部