本文主要是介绍php 微信退款,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
//要引入文件地址 https://gitee.com/zzl_index/wechat-refund.git
//微信退款
public function ref_money($id)
{
$param = $this->request->param();
//订单ID
if(!isset($param['id']) || empty($param['id'])){
return api_error('ID不能为空');
}
//业务操作
//调用退款
$appid = config('jwt.app_id');
$mchid = config('jwt.mchid');
$apiKey = config('jwt.key');
$reval = new Wxrefund($mchid,$appid,$apiKey);
$do_refund = $reval->chrefund($order_no,$price,$price);
if($do_refund == 1){
return 1;//成功
}else{
return 0;//失败
}
}
这篇关于php 微信退款的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!