PHP实现微信商户支付企业付款到零钱功能
程序员文章站
2023-11-12 19:10:58
本文为大家分享了php实现微信商户支付企业付款到零钱的具体代码,供大家参考,具体内容如下
一、开通条件
企业付款为企业提供付款至用户零钱的能力,支持通过api接口付...
本文为大家分享了php实现微信商户支付企业付款到零钱的具体代码,供大家参考,具体内容如下
一、开通条件
企业付款为企业提供付款至用户零钱的能力,支持通过api接口付款,或通过微信支付商户平台(pay.weixin.qq.com)网页操作付款。
使用条件
- 商户号(或同主体其他非服务商商户号)已入驻90日
- 商户号(或同主体其他非服务商商户号)有30天连续正常交易
- 登录微信支付商户平台-产品中心,开通企业付款。
具体的可以看微信支付开发文档
二、代码展示
//企业付款到微信零钱,php接口调用方法 define("appid", "wxe062425f740c30d8"); // 商户账号appid define("mchid", "10000098"); // 商户号 define("secrect_key", "453436425252"); //支付密钥签名 define("ip", "xxx.xxx.xx.xx"); //ip /** * [xmltoarray xml格式转换为数组] * @param [type] $xml [xml] * @return [type] [xml 转化为array] */ function xmltoarray($xml) { //禁止引用外部xml实体 libxml_disable_entity_loader(true); $xmlstring = simplexml_load_string($xml, 'simplexmlelement', libxml_nocdata); $val = json_decode(json_encode($xmlstring),true); return $val; } /** * [arraytoxml 将数组转换成xml格式(简单方法):] * @param [type] $data [数组] * @return [type] [array 转 xml] */ function arraytoxml($data){ $str='<xml>'; foreach($data as $k=>$v) { $str.='<'.$k.'>'.$v.'</'.$k.'>'; } $str.='</xml>'; return $str; } /** * [createnoncestr 生成随机字符串] * @param integer $length [长度] * @return [type] [字母大小写加数字] */ function createnoncestr($length =32){ $chars = "abcdefghijklmnopqrstuvwxyabcdefghijklmnopqrstuvwxyz0123456789"; $str =""; for($i=0;$i<$length;$i++){ $str.= substr($chars, mt_rand(0, strlen($chars)-1), 1); } return $str; } /** * [curl_post_ssl 发送curl_post数据] * @param [type] $url [发送地址] * @param [type] $xmldata [发送文件格式] * @param [type] $second [设置执行最长秒数] * @param [type] $aheader [设置头部] * @return [type] [description] */ function curl_post_ssl($url, $xmldata, $second = 30, $aheader = array()){ $isdir = $_server['document_root']."/cert/";//证书位置;绝对路径 $ch = curl_init();//初始化curl curl_setopt($ch, curlopt_timeout, $second);//设置执行最长秒数 curl_setopt($ch, curlopt_returntransfer, 1);//要求结果为字符串且输出到屏幕上 curl_setopt($ch, curlopt_url, $url);//抓取指定网页 curl_setopt($ch, curlopt_ssl_verifypeer, false);// 终止从服务端进行验证 curl_setopt($ch, curlopt_ssl_verifyhost, false);// curl_setopt($ch, curlopt_sslcerttype, 'pem');//证书类型 curl_setopt($ch, curlopt_sslcert, $isdir . 'apiclient_cert.pem');//证书位置 curl_setopt($ch, curlopt_sslkeytype, 'pem');//curlopt_sslkey中规定的私钥的加密类型 curl_setopt($ch, curlopt_sslkey, $isdir . 'apiclient_key.pem');//证书位置 curl_setopt($ch, curlopt_cainfo, 'pem'); curl_setopt($ch, curlopt_cainfo, $isdir . 'rootca.pem'); if (count($aheader) >= 1) { curl_setopt($ch, curlopt_httpheader, $aheader);//设置头部 } curl_setopt($ch, curlopt_post, 1);//post提交方式 curl_setopt($ch, curlopt_postfields, $xmldata);//全部数据使用http协议中的"post"操作来发送 $data = curl_exec($ch);//执行回话 if ($data) { curl_close($ch); return $data; } else { $error = curl_errno($ch); echo "call faild, errorcode:$error\n"; curl_close($ch); return false; } } /** * [sendmoney 企业付款到零钱] * @param [type] $amount [发送的金额(分)目前发送金额不能少于1元] * @param [type] $re_openid [发送人的 openid] * @param string $desc [企业付款描述信息 (必填)] * @param string $check_name [收款用户姓名 (选填)] * @return [type] [description] */ function sendmoney($amount,$re_openid,$desc='测试',$check_name=''){ $total_amount = (100) * $amount; $data=array( 'mch_appid'=>appid,//商户账号appid 'mchid'=> mchid,//商户号 'nonce_str'=>createnoncestr(),//随机字符串 'partner_trade_no'=> date('ymdhis').rand(1000, 9999),//商户订单号 'openid'=> $re_openid,//用户openid 'check_name'=>'no_check',//校验用户姓名选项, 're_user_name'=> $check_name,//收款用户姓名 'amount'=>$total_amount,//金额 'desc'=> $desc,//企业付款描述信息 'spbill_create_ip'=> ip,//ip地址 ); //生成签名算法 $secrect_key=secrect_key;///这个就是个api密码。md5 32位。 $data=array_filter($data); ksort($data); $str=''; foreach($data as $k=>$v) { $str.=$k.'='.$v.'&'; } $str.='key='.$secrect_key; $data['sign']=md5($str); //生成签名算法 $xml=arraytoxml($data); $url='https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers'; //调用接口 $res=curl_post_ssl($url,$xml); $return=xmltoarray($res); print_r($return); //返回来的结果是xml,最后转换成数组 /* array(9) { ["return_code"]=> string(7) "success" ["return_msg"]=> array(0) { } ["mch_appid"]=> string(18) "wx57676786465544b2a5" ["mchid"]=> string(10) "143345612" ["nonce_str"]=> string(32) "iw6tthdoysmafs81qcnqxojwumn8l8my" ["result_code"]=> string(7) "success" ["partner_trade_no"]=> string(18) "201807011410504098" ["payment_no"]=> string(28) "1000018301201807019357038738" ["payment_time"]=> string(19) "2018-07-01 14:56:35" } */ $responseobj = simplexml_load_string($res, 'simplexmlelement', libxml_nocdata); echo $res= $responseobj->return_code; //success 如果返回来success,则发生成功,处理自己的逻辑 return $res; }
三、调用方法
sendmoney(1,'gdgfdg56456223423','xxxx测试','xxx');
调用的话,稍微在修改下,加上自己的业务逻辑就行了。
四、调用效果
也可以下载文件,我写的是一个类文件:php微信商户支付企业付款到零钱功能
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: CentOS7.0下安装PHP5.6.30服务的教程详解
下一篇: php微信公众号开发之秒杀