您好,登錄后才能下訂單哦!
這篇文章主要介紹PHP實(shí)現(xiàn)微信掃碼支付功能的示例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
PHP實(shí)現(xiàn)微信掃碼支付功能的方法
在手機(jī)微信端進(jìn)行微信支付,直接調(diào)起JSAPI支付,這可以實(shí)現(xiàn)在微信里邊的開(kāi)的頁(yè)面進(jìn)行支付,比如微商城,微信端JSAPI支付詳見(jiàn):PHP實(shí)現(xiàn)微信支付(jsapi支付)和退款(無(wú)需集成支付SDK);但有時(shí)候商城還有PC端,需要在PC端使用微信支付,則需要PC端生成支付二維碼,然后微信掃碼完成支付。例如:
這里主要講一下PC端掃碼支付以及退款的具體實(shí)現(xiàn):
/** * 微信支付請(qǐng)求接口(POST) * @param string $goods_id 商品ID * @param string $body 商品簡(jiǎn)單描述 * @param string $order_sn 訂單編號(hào) * @param string $total_fee 金額 * @return json的數(shù)據(jù) */ public function wxpay($goods_id,$total_fee,$body,$order_sn){ $config = $this->config; //統(tǒng)一下單參數(shù)構(gòu)造 $unifiedorder = array( 'appid' => $config['appid'], 'mch_id' => $config['mch_id'], 'device_info' => 'WEB', 'nonce_str' => self::getNonceStr(), 'body' => $body, 'out_trade_no' => $order_sn, 'total_fee' => $total_fee * 100, 'spbill_create_ip' => self::getip(), 'notify_url' => 'http://'.$_SERVER['HTTP_HOST'].'/notify.php', 'trade_type' => 'NATIVE', 'product_id' => $goods_id ); $unifiedorder['sign'] = self::makeSign($unifiedorder); //return $unifiedorder; //請(qǐng)求數(shù)據(jù),統(tǒng)一下單 $xmldata = self::array2xml($unifiedorder); $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder'; $res = self::curl_post_ssl($url, $xmldata); if(!$res){ return array('status'=>0, 'msg'=>"Can't connect the server" ); } // 這句file_put_contents是用來(lái)查看服務(wù)器返回的結(jié)果 測(cè)試完可以刪除了 file_put_contents('./log.txt',$res,FILE_APPEND); $content = self::xml2array($res); if(strval($content['result_code']) == 'FAIL'){ return array('status'=>0, 'msg'=>strval($content['err_code']).':'.strval($content['err_code_des'])); } if(strval($content['return_code']) == 'FAIL'){ return array('status'=>0, 'msg'=>strval($content['return_msg'])); } return $content; } /** * 微信退款(POST) * @param string(28) $transaction_id 在微信支付的時(shí)候,微信服務(wù)器生成的訂單流水號(hào),在支付通知中有返回 * @param string $out_refund_no 商品簡(jiǎn)單描述 * @param string $total_fee 微信支付的時(shí)候支付的總金額(單位:分) * @param string $refund_fee 此次要退款金額(單位:分) * @return string xml格式的數(shù)據(jù) */ public function refund($transaction_id,$out_refund_no,$total_fee,$refund_fee){ $config = $this->config; //退款參數(shù) $refundorder = array( 'appid' => $config['appid'], 'mch_id' => $config['mch_id'], 'nonce_str' => self::getNonceStr(), 'transaction_id'=> $transaction_id, 'out_refund_no' => $out_refund_no, 'total_fee' => $total_fee * 100, 'refund_fee' => $refund_fee * 100 ); $refundorder['sign'] = self::makeSign($refundorder); //請(qǐng)求數(shù)據(jù),進(jìn)行退款 $xmldata = self::array2xml($refundorder); $url = 'https://api.mch.weixin.qq.com/secapi/pay/refund'; $res = self::curl_post_ssl($url, $xmldata); if(!$res){ return array('status'=>0, 'msg'=>"Can't connect the server" ); } // 這句file_put_contents是用來(lái)查看服務(wù)器返回的結(jié)果 測(cè)試完可以刪除了 //file_put_contents('./log3.txt',$res,FILE_APPEND); $content = self::xml2array($res); if(strval($content['result_code']) == 'FAIL'){ return array('status'=>0, 'msg'=>strval($content['err_code']).':'.strval($content['err_code_des'])); } if(strval($content['return_code']) == 'FAIL'){ return array('status'=>0, 'msg'=>strval($content['return_msg'])); } return $content; }
支付和退款就是這么簡(jiǎn)單,而且支付的時(shí)候無(wú)需獲取用戶openid,無(wú)需證書(shū)文件,無(wú)需配置支付授權(quán)目錄,這是封裝過(guò)的支付類文件的實(shí)現(xiàn),調(diào)用方法更簡(jiǎn)單:
require_once "webwxpay.class.php"; $config = array( 'appid' => 'wx123456789876', 'mch_id' => '123456789', 'pay_apikey' => '123456789876123456789876123456789876' ); $wxpay = new WxPay($config); $result = $wxpay->paytest(); //print_r($result); scerweima($result['code_url']); //生成的支付二維碼,用戶可以掃碼付款
這時(shí)候就會(huì)生成支付二維碼,然后微信掃一掃就可以完成支付:
至于支付回調(diào)驗(yàn)證,這里就不過(guò)多講了,不明白的可以看ThinkPHP中實(shí)現(xiàn)微信支付(jsapi支付)流程,這里詳細(xì)講了如何處理回調(diào)。
以上是“PHP實(shí)現(xiàn)微信掃碼支付功能的示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。