菜鸟笔记
简单的开发笔记
首页
登录 / 注册
笨猫首页
笨猫首页
斑马导航
奶牛网盘
白象软仓
青蛙壁纸
毒蛇电影
怪鸟头像
大熊逗图
热狗应用
蜗牛摘录
狐狸颜选
关于我们
收藏网站
菜鸟笔记
简单的开发笔记
首页
登录 / 注册
简单的微信支付v3支付类
做个记录,PHP实现微信支付V3简单支付类。 ```php 'https://api.mch.weixin.qq.com/v3/pay/transactions/app',//APP支付 'h5' => 'https://api.mch.weixin.qq.com/v3/pay/transactions/h5',//H5支付 ];//支付接口列表 protected $queryApi = 'https://api.mch.weixin.qq.com/v3/pay/transactions/id/{transaction_id}';//查询订单接口 protected $refundApi = 'https://api.mch.weixin.qq.com/v3/refund/domestic/refunds';//退单接口 protected $refundNotify = '******';//退单回调自定义 public function _initialize() { } /** * 配置 */ public function config(){ return [ 'appid' => '******', 'mchid' => '******',//商户号 'serial_no' => '******',//证书序列号 'description' => '******',//应用名称 'notify' => '******',//支付回调 ]; } /** * 设置支付url * @param string $type 支付平台 * @return mixed */ public function getPayUrl($type = 'app'){ return $this->payApi[$type]; } /** * H5支付 * @param $total int 支付金额 * @return mixed */ public function h5Pay($total){ //请求参数(报文主体) $config = $this->config(); $body = [ 'appid' => $config['appid'], 'mchid' => $config['mchid'], 'description' => $config['description'], 'out_trade_no' => $this->getOrderNo(), 'notify_url' => $config['notify'], 'amount' => [ 'total' => $total, 'currency' => 'CNY' ], 'scene_info' => [ 'payer_client_ip' => Request::instance()->ip(), 'h5_info' => [ 'type' => 'Wap', ], ], ]; $headers = $this->sign('POST',$this->getPayUrl('h5'),json_encode($body)); return $this->curl_post($this->getPayUrl('h5'),json_encode($body),$headers); } /** * APP支付 * @param $total int 支付金额 * @return mixed */ public function appPay($total){ //请求参数(报文主体) $config = $this->config(); $body = [ 'appid' => $config['appid'], 'mchid' => $config['mchid'], 'description' => $config['description'], 'out_trade_no' => $this->getOrderNo(), 'notify_url' => $config['notify'], 'amount' => [ 'total' => $total, 'currency' => 'CNY' ], ]; $headers = $this->sign('POST',$this->getPayUrl(),json_encode($body)); return $this->curl_post($this->getPayUrl(),json_encode($body),$headers); } /** * 预下单 */ public function preOrder(){ $res = $this->h5Pay(1); print_r($res);die; } /** * 支付回调 */ public function notify(){ } /** * 退款 * @param string $transaction_id 平台订单号 * @return mixed */ public function refund($transaction_id = ''){ $body = [ 'transaction_id' => $transaction_id,//平台订单号 'out_refund_no' => $this->getOrderNo(),//系统退款单号 'reason' => '退款',//退款原因 'notify_url' => '',//退款回调 'amount' => [ 'refund' => 1,//退款金额 'total' => 1,//原订单金额 'currency' => 'CNY', ], ]; $headers = $this->sign('POST',$this->refundApi,json_encode($body)); return $this->curl_post($this->refundApi,json_encode($body),$headers); } /** * 退款回调 */ public function refundNotify(){ } /** * 签名 * @param string $http_method 请求方式GET|POST * @param string $url url * @param string $body 报文主体 * @return array */ public function sign($http_method = 'POST',$url = '',$body = ''){ $mch_private_key = $this->getMchKey();//私钥 $timestamp = time();//时间戳 $nonce = $this->getRandomStr(32);//随机串 $url_parts = parse_url($url); $canonical_url = ($url_parts['path'] . (!empty($url_parts['query']) ? "?${url_parts['query']}" : "")); //构造签名串 $message = $http_method."\n". $canonical_url."\n". $timestamp."\n". $nonce."\n". $body."\n";//报文主体 //计算签名值 openssl_sign($message, $raw_sign, $mch_private_key, 'sha256WithRSAEncryption'); $sign = base64_encode($raw_sign); //设置HTTP头 $config = $this->config(); $token = sprintf('WECHATPAY2-SHA256-RSA2048 mchid="%s",nonce_str="%s",timestamp="%d",serial_no="%s",signature="%s"', $config['mchid'], $nonce, $timestamp, $config['serial_no'], $sign); $headers = [ 'Accept: application/json', 'User-Agent: */*', 'Content-Type: application/json; charset=utf-8', 'Authorization: '.$token, ]; return $headers; } //私钥 public function getMchKey(){ //path->私钥文件存放路径 return openssl_get_privatekey(file_get_contents('path')); } //post请求 public function curl_post($url , $data,$headers=array()) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); //设置header头 curl_setopt($ch, CURLOPT_HTTPHEADER,$headers); // POST数据 curl_setopt($ch, CURLOPT_POST, 1); // 把post的变量加上 curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $output = curl_exec($ch); curl_close($ch); return $output; } //get请求 public function curl_get($url,$headers=array()) { $info = curl_init(); curl_setopt($info,CURLOPT_RETURNTRANSFER,true); curl_setopt($info,CURLOPT_HEADER,0); curl_setopt($info,CURLOPT_NOBODY,0); curl_setopt($info,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($info,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($info,CURLOPT_SSL_VERIFYHOST,false); //设置header头 curl_setopt($info, CURLOPT_HTTPHEADER,$headers); curl_setopt($info,CURLOPT_URL,$url); $output = curl_exec($info); curl_close($info); return $output; } /** * 获得随机字符串 * @param $len integer 需要的长度 * @param $special bool 是否需要特殊符号 * @return string 返回随机字符串 */ public function getRandomStr($len, $special=false){ $chars = array( "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" ); if($special){ $chars = array_merge($chars, array( "!", "@", "#", "$", "?", "|", "{", "/", ":", ";", "%", "^", "&", "*", "(", ")", "-", "_", "[", "]", "}", "<", ">", "~", "+", "=", ",", "." )); } $charsLen = count($chars) - 1; shuffle($chars); //打乱数组顺序 $str = ''; for($i=0; $i<$len; $i++){ $str .= $chars[mt_rand(0, $charsLen)]; //随机取出一位 } return $str; } /** * 生成订单号 */ public function getOrderNo(){ return date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8); } //H5测试支付 // public function pay(){ // $url = 'https://api.mch.weixin.qq.com/v3/pay/transactions/h5'; // $body = [ // 'appid' => '******', // 'mchid' => '******', // 'description' => '******', // 'out_trade_no' => date('YmdHis').rand(1000,9999), // 'notify_url' => "******", // 'amount' => [ // 'total' => 100, // 'currency' => 'CNY' // ], // 'scene_info' => [ // 'payer_client_ip' => Request::instance()->ip(), // 'h5_info' => [ // 'type' => 'Wap', // ], // ], // ]; // $headers = $this->sign('POST',$url,json_encode($body)); // $res = $this->curl_post($url,$body,$headers); // print_r($res); // } } ```
微信搜搜
笨猫小站
win10安装MinGW
小程序(或h5)无法显示阿里云服务器上的图片
微信支付v3支付结果通知处理(php)
php 去除变态空格字符方法,空格trim不掉问题解决思路
(1302)
(413)
(183)
打赏
公众号
小程序
QQ群
顶部
笨猫小站
小站首页
笨猫图库
懒虫工具
奶牛网盘
斑马导航
青蛙壁纸
毒蛇电影
白象软件
热狗应用
怪鸟头像
狐狸颜选
菜鸟笔记
蜗牛摘录
谢谢老板打赏
祝老板每天都有好运气
支付宝
微信
关闭弹窗
小站会员
永久会员最划算哟
3天体验卡
¥9.00
¥29.00
每天仅需3.00元
每天下载
5
次
1年畅享卡
¥39.00
¥99.00
每天仅需0.11元
每天下载
20
次
永久至尊卡
¥99.00
¥369.00
每天仅需0.00元
每天下载
1000
次
支付宝支付
微信支付
1. 会员充值前请仔细核对信息
2. 会员属于虚拟产品,充值成功后不予退款
微信搜一搜
笨猫小站
打赏赞助
猫豆充值
充值越多价格约优惠哟
20 猫豆
¥5.00元
¥5.00元
50 猫豆
¥9.00元
¥9.00元
100 猫豆
¥15.00元
¥15.00元
200 猫豆
¥20.00元
¥20.00元
500 猫豆
¥29.00元
¥29.00元
1000 猫豆
¥49.00元
¥49.00元
2000 猫豆
¥89.00元
¥89.00元
5000 猫豆
¥179.00元
¥179.00元
10000 猫豆
¥299.00元
¥299.00元
支付宝支付
微信支付
微信扫码支付
请使用微信扫一扫完成付款
¥15.00
22:21:12
我已支付
笨猫小站
微信扫码关注不领福利
请使用微信扫一扫关注我
已关注
笨猫工具
笨猫小站工具库
请使用微信扫一扫立马获取
已关注
笨猫小站
笨猫小站资源群
请使用QQ扫一扫加如QQ群
已加入
绑定账号
绑定账号手机端登录更方便
确认绑定
绑定微信
绑定微信登录更方便
微信二维码已过期
刷新
请使用微信扫码关注即可绑定
(移动端截图保存扫码关注)
订单详情
订单信息已生成
请稍等...
登录
·
注册
登录即代表您已同意
《服务协议》
和
《隐私协议》
确认提交
微信快捷登录/注册
注册即代表您已同意
《服务协议》
和
《隐私协议》
确认提交
微信快捷登录/注册
微信二维码已过期
刷新
请使用微信扫描二维码关注登录
手机账号注册