PHP實現(xiàn)微信申請退款功能
發(fā)布時間:2018-08-12 09:28:20
來源:
前期準(zhǔn)備:
當(dāng)然是搞定了微信支付,不然怎么退款,這次還是使用官方的demo。當(dāng)然網(wǎng)上可能也有很多大神自己重寫和封裝了demo,或許更加好用簡潔,但是我還是不提倡用,原因如下:
(1)可能功能不全,或許他只是實現(xiàn)了微信支付,但是還有申請退款、查詢退款、訂單查詢、撤銷訂單等業(yè)務(wù)功能可能是你后續(xù)需要的,如果你依賴于大神的SDK的便捷,如果有新的業(yè)務(wù)需求,你就懵逼了;
(2)安全考慮,涉及到支付涉及到金錢,必須要非常安全。官方SDK雖然我也吐槽,但至少會相對比較安全,再次重寫,雖然暫時沒看出問題,但是萬一有漏洞就不好了。
本篇還是使用到官方提供的SDK中的最重要的一個類文件WxPay.Api.PHP中提供的refund()方法來實現(xiàn),此方法在WxPay.Api.php文件的第141行,代碼如下:
/**
*
* 申請退款,WxPayRefund中out_trade_no、transaction_id至少填一個且
* out_refund_no、total_fee、refund_fee、op_user_id為必填參數(shù)
* appid、mchid、spbill_create_ip、nonce_str不需要填入
* @param WxPayRefund $inputObj
* @param int $timeOut
* @throws WxPayException
* @return 成功時返回,其他拋異常
*/
public static function refund($inputObj, $timeOut = 6){
$url = "https://api.mch.weixin.qq.com/secapi/pay/refund";
//檢測必填參數(shù)
if(!$inputObj->IsOut_trade_noSet() && !$inputObj->IsTransaction_idSet()) {
throw new WxPayException("退款申請接口中,out_trade_no、transaction_id至少填一個!");
}else if(!$inputObj->IsOut_refund_noSet()){
throw new WxPayException("退款申請接口中,缺少必填參數(shù)out_refund_no!");
}else if(!$inputObj->IsTotal_feeSet()){
throw new WxPayException("退款申請接口中,缺少必填參數(shù)total_fee!");
}else if(!$inputObj->IsRefund_feeSet()){
throw new WxPayException("退款申請接口中,缺少必填參數(shù)refund_fee!");
}else if(!$inputObj->IsOp_user_idSet()){
throw new WxPayException("退款申請接口中,缺少必填參數(shù)op_user_id!");
}
$inputObj->SetAppid(WxPayConfig::APPID);//公眾賬號ID
$inputObj->SetMch_id(WxPayConfig::MCHID);//商戶號
$inputObj->SetNonce_str(self::getNonceStr());//隨機(jī)字符串
$inputObj->SetSign();//簽名
$xml = $inputObj->ToXml();
$startTimeStamp = self::getMillisecond();//請求開始時間
$response = self::postXmlCurl($xml, $url, true, $timeOut);
$result = WxPayResults::Init($response);
self::reportCostTime($url, $startTimeStamp, $result);//上報請求花費時間
return $result;
}
官方的方法,寫的很清楚需要哪些參數(shù),還有一些必須參數(shù)SDK已經(jīng)幫我們補齊了,我將這個方法重新封裝一下,便于在項目中調(diào)用:
/**
* 微信退款
* @param string $order_id 訂單ID
* @return 成功時返回(array類型),其他拋異常
*/
function wxRefund($order_id){
//我的SDK放在項目根目錄下的Api目錄下
require_once APP_ROOT."/Api/wxpay/lib/WxPay.Api.php";
//查詢訂單,根據(jù)訂單里邊的數(shù)據(jù)進(jìn)行退款
$order = M('order')->where(array('id'=>$order_id,'is_refund'=>2,'order_status'=>1))->find();
$merchid = WxPayConfig::MCHID;
if(!$order) return false;
$input = new WxPayRefund();
$input->SetOut_trade_no($order['order_sn']); //自己的訂單號
$input->SetTransaction_id($order['transaction_id']); //微信官方生成的訂單流水號,在支付成功中有返回
$input->SetOut_refund_no(getrand_num(true)); //退款單號
$input->SetTotal_fee($order['total_price']); //訂單標(biāo)價金額,單位為分
$input->SetRefund_fee($order['total_price']); //退款總金額,訂單總金額,單位為分,只能為整數(shù)
$input->SetOp_user_id($merchid);
$result = WxPayApi::refund($input); //退款操作
// 這句file_put_contents是用來查看服務(wù)器返回的退款結(jié)果 測試完可以刪除了
//file_put_contents(APP_ROOT.'/Api/wxpay/logs/log3.txt',arrayToXml($result),FILE_APPEND);
return $result;
}
這里需要吐槽一下,竟然不說返回值的類型,在支付的時候返回的是XML數(shù)據(jù),這里竟然返回的是數(shù)組,讓我措手不及,哈哈不過還是返回數(shù)組比較好,可以直接判斷處理。
方法調(diào)用就更加簡單了:
//微信退款
$result = wxRefund($order_id);
// 這句file_put_contents是用來查看服務(wù)器返回的退款結(jié)果 測試完可以刪除了
//file_put_contents(APP_ROOT.'/Api/wxpay/logs/log4.txt',arrayToXml($result),FILE_APPEND);
if(($result['return_code']=='SUCCESS') && ($result['result_code']=='SUCCESS')){
//退款成功
}else if(($result['return_code']=='FAIL') || ($result['result_code']=='FAIL')){
//退款失敗
//原因
$reason = (empty($result['err_code_des'])?$result['return_msg']:$result['err_code_des']);
}else{
//失敗
}
退款成功返回如下: