public $data = null; /** * 退款 * @param int $orderid 商户订单号 * @param float $totalAmount 订单金额 * @return string */ public function doRefund($orderid, $totalAmount) { $mchid = '微信商户号'; $appid = 'APPID'; $apiKey = 'API密钥'; $orderNo = '商户订单号'; // 必填 $wxOrderNo = ''; //微信订单号 不填 $totalFee = $totalAmount; //订单金额,单位:元 $refundFee = $totalAmount; //退款金额,单位:元 $
使用ThinkPHP5写的微信支付,$res数组下是要使用到的数据 //微信支付 public function Pay() { $res = request()->param(); //注意::::117行需要填写商户密钥wx_key //总金额 $res['total_fee'] = intval($res['total_fee'] * 100); //appid $appid = $res['appid']; $body = '内容体'; $mch_id = '商户号'; //随机字符串 $nonce_str = $this->nonce_str(); $notify_url = '回调地址,一个url'; //用户openid $openid = $res['openid']; //商户订单号 $out_t
SK
Devil in My Mind.