溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中如何實現(xiàn)微信支付和退款功能

發(fā)布時間:2021-06-03 11:30:56 來源:億速云 閱讀:162 作者:小新 欄目:開發(fā)技術

這篇文章主要介紹了PHP中如何實現(xiàn)微信支付和退款功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

前期準備:

1.當然了,還是要有一個微信認證服務號,并且開通了微信支付;

2.在微信商戶后臺配置好支付授權目錄,同時準備好支付的Api證書(支付用不到,退款的時候使用)

3.調(diào)用接口支付的話,必須要先知道該用戶的openid,所以要先知道怎么獲取用戶的openid,這個也很簡單,我之前也有文章講怎么獲取用戶的openid,詳見文章微信公眾號獲取用戶的openid。

好了,話不多說,直接貼上主要代碼:

/** 
 * 微信支付請求接口(POST) 
 * @param string $openid openid 
 * @param string $body 商品簡單描述 
 * @param string $order_sn 訂單編號 
 * @param string $total_fee 金額 
 * @return json的數(shù)據(jù) 
 */ 
public function wxpay($openid,$total_fee,$body,$order_sn){ 
 $config = $this->config; 
 //統(tǒng)一下單參數(shù)構造 
 $unifiedorder = array( 
 'appid' => $config['appid'], 
 'mch_id' => $config['mch_id'], 
 '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' => 'JSAPI', 
 'openid' => $openid 
 ); 
 $unifiedorder['sign'] = self::makeSign($unifiedorder); 
 //return $unifiedorder; 
 //請求數(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是用來查看服務器返回的結(jié)果 測試完可以刪除了 
 //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'])); 
 } 
 $time = time(); 
 settype($time, "string"); //jsapi支付界面,時間戳必須為字符串格式 
 $resdata = array( 
 'appId' => strval($content['appid']), 
 'nonceStr' => strval($content['nonce_str']), 
 'package' => 'prepay_id='.strval($content['prepay_id']), 
 'signType' => 'MD5', 
 'timeStamp' => $time 
 ); 
 $resdata['paySign'] = self::makeSign($resdata); 
 return json_encode($resdata); 
} 
/** 
 * 微信退款(POST) 
 * @param string(28) $transaction_id 在微信支付的時候,微信服務器生成的訂單流水號,在支付通知中有返回 
 * @param string $out_refund_no 商品簡單描述 
 * @param string $total_fee 微信支付的時候支付的總金額(單位:分) 
 * @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); 
 //請求數(shù)據(jù),進行退款 
 $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是用來查看服務器返回的結(jié)果 測試完可以刪除了 
 //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; 
}

這是封裝好的類,使用起來也超級簡單:

<?php 
require_once "wxpay.class.php"; 
$config = array( 
 'wxappid' => 'wx123456789876', 
 'mch_id' => '123456789', 
 'pay_apikey' => '123456789876123456789876123456789876' 
); 
$wxpay = new WxPay($config); 
$result = $wxpay->paytest(); 
?> 
<html> 
<head> 
 <meta http-equiv="content-type" content="text/html;charset=utf-8"/> 
 <meta name="viewport" content="width=device-width, initial-scale=1"/> 
 <title>江南極客支付</title> 
 <script type="text/javascript"> 
 //調(diào)用微信JS api 支付 
 function jsApiCall() 
 { 
 WeixinJSBridge.invoke( 
 'getBrandWCPayRequest',<?php echo $result; ?>, 
 function(res){ 
 WeixinJSBridge.log(res.err_msg); 
 //alert(res); 
 if(res.err_msg == "get_brand_wcpay_request:ok"){ 
  alert("支付成功!"); 
 }else if(res.err_msg == "get_brand_wcpay_request:cancel"){ 
  alert("用戶取消支付!"); 
 }else{ 
  alert("支付失敗!"); 
 } 
 } 
 ); 
 } 
 function callpay() 
 { 
 if (typeof WeixinJSBridge == "undefined"){ 
 if( document.addEventListener ){ 
 document.addEventListener('WeixinJSBridgeReady', jsApiCall, false); 
 }else if (document.attachEvent){ 
 document.attachEvent('WeixinJSBridgeReady', jsApiCall); 
 document.attachEvent('onWeixinJSBridgeReady', jsApiCall); 
 } 
 }else{ 
 jsApiCall(); 
 } 
 } 
 </script> 
</head> 
<body> 
 <br/> 
 <font color="#9ACD32"><b>該筆訂單支付金額為<span >1分</span>錢</b></font><br/><br/> 
 <font color="#9ACD32"><b><span >1分</span>錢也是愛</b></font><br/><br/> 
 <div align="center"> 
 <button  type="button" onclick="callpay()" >果斷買買買^_^</button> 
 </div> 
</body> 
</html>

至于支付回調(diào)驗證,這里就不過多講了,不明白的可以看ThinkPHP中實現(xiàn)微信支付(jsapi支付)流程,這里詳細講了如何處理回調(diào)。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“PHP中如何實現(xiàn)微信支付和退款功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

php
AI