WxMerchPay.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?php
  2. namespace app\common\library;
  3. use think\Controller;
  4. use app\common\model\Config;
  5. class WxMerchPay extends Controller
  6. {
  7. //企业付款到微信零钱,PHP接口调用方法
  8. /*
  9. 配置参数
  10. */
  11. /*
  12. 配置参数
  13. */
  14. public function __construct()
  15. {
  16. $this->appid = Config::get_values('wechat_appid');
  17. $this->api_key = Config::get_values('wechat_mch_key');
  18. $this->mch_id = Config::get_values('wechat_mch_id');
  19. }
  20. // private $config = array(
  21. // 'appid' => "wx57f0ba125c0f9351" ,//"wxcf1dded808489e2c", /*微信开放平台上的应用id*/
  22. // 'mch_id' => "1526848461",//"1440493402", /*微信申请成功之后邮件中的商户id*/
  23. // 'api_key' => "quanminchuangquanminchuang123521" /*在微信商户平台上自己设定的api密钥 32位*/
  24. // );
  25. /**
  26. * [xmltoarray xml格式转换为数组]
  27. * @param [type] $xml [xml]
  28. * @return [type] [xml 转化为array]
  29. */
  30. function xmltoarray($xml) {
  31. //禁止引用外部xml实体
  32. libxml_disable_entity_loader(true);
  33. $xmlstring = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
  34. $val = json_decode(json_encode($xmlstring),true);
  35. return $val;
  36. }
  37. /**
  38. * [arraytoxml 将数组转换成xml格式(简单方法):]
  39. * @param [type] $data [数组]
  40. * @return [type] [array 转 xml]
  41. */
  42. function arraytoxml($data){
  43. $str='<xml>';
  44. foreach($data as $k=>$v) {
  45. $str.='<'.$k.'>'.$v.'</'.$k.'>';
  46. }
  47. $str.='</xml>';
  48. return $str;
  49. }
  50. /**
  51. * [createNoncestr 生成随机字符串]
  52. * @param integer $length [长度]
  53. * @return [type] [字母大小写加数字]
  54. */
  55. function createNoncestr($length =32){
  56. $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYabcdefghijklmnopqrstuvwxyz0123456789";
  57. $str ="";
  58. for($i=0;$i<$length;$i++){
  59. $str.= substr($chars, mt_rand(0, strlen($chars)-1), 1);
  60. }
  61. return $str;
  62. }
  63. /**
  64. * [curl_post_ssl 发送curl_post数据]
  65. * @param [type] $url [发送地址]
  66. * @param [type] $xmldata [发送文件格式]
  67. * @param [type] $second [设置执行最长秒数]
  68. * @param [type] $aHeader [设置头部]
  69. * @return [type] [description]
  70. */
  71. function curl_post_ssl($url, $xmldata, $second = 30, $aHeader = array()){
  72. $isdir = dirname(__DIR__) . "/wxcert/";//证书位置;绝对路径
  73. $ch = curl_init();//初始化curl
  74. curl_setopt($ch, CURLOPT_TIMEOUT, $second);//设置执行最长秒数
  75. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上
  76. curl_setopt($ch, CURLOPT_URL, $url);//抓取指定网页
  77. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);// 终止从服务端进行验证
  78. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);//
  79. curl_setopt($ch, CURLOPT_SSLCERTTYPE, 'PEM');//证书类型
  80. curl_setopt($ch, CURLOPT_SSLCERT, $isdir . 'apiclient_cert.pem');//证书位置
  81. curl_setopt($ch, CURLOPT_SSLKEYTYPE, 'PEM');//CURLOPT_SSLKEY中规定的私钥的加密类型
  82. curl_setopt($ch, CURLOPT_SSLKEY, $isdir . 'apiclient_key.pem');//证书位置
  83. curl_setopt($ch, CURLOPT_CAINFO, 'PEM');
  84. curl_setopt($ch, CURLOPT_CAINFO, $isdir . 'rootca.pem');
  85. if (count($aHeader) >= 1) {
  86. curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader);//设置头部
  87. }
  88. curl_setopt($ch, CURLOPT_POST, 1);//post提交方式
  89. curl_setopt($ch, CURLOPT_POSTFIELDS, $xmldata);//全部数据使用HTTP协议中的"POST"操作来发送
  90. $data = curl_exec($ch);//执行回话
  91. if ($data) {
  92. curl_close($ch);
  93. return $data;
  94. } else {
  95. $error = curl_errno($ch);
  96. echo "call faild, errorCode:$error\n";
  97. curl_close($ch);
  98. return false;
  99. }
  100. }
  101. /**
  102. * [sendMoney 企业付款到零钱]
  103. * @param [type] $amount [发送的金额(分)目前发送金额不能少于1元]
  104. * @param [type] $re_openid [发送人的 openid]
  105. * @param string $desc [企业付款描述信息 (必填)]
  106. * @param string $check_name [收款用户姓名 (选填)]
  107. * @return [type] [description]
  108. */
  109. function sendMoney($amount,$re_openid,$partner_trade_no,$desc='测试',$check_name=''){
  110. $total_amount = (100) * $amount;
  111. $data=array(
  112. 'mch_appid'=> $this->appid,//商户账号appid
  113. 'mchid'=> $this->mch_id,//商户号
  114. 'nonce_str'=>$this->createNoncestr(),//随机字符串
  115. 'partner_trade_no'=> $partner_trade_no,//商户订单号
  116. 'openid'=> $re_openid,//用户openid
  117. 'check_name'=>'NO_CHECK',//校验用户姓名选项,
  118. 're_user_name'=> $check_name,//收款用户姓名
  119. 'amount'=>$total_amount,//金额
  120. 'desc'=> $desc,//企业付款描述信息
  121. 'spbill_create_ip'=> request()->ip(),//Ip地址
  122. );
  123. //生成签名算法
  124. $secrect_key=$this->api_key;///这个就是个API密码。MD5 32位。
  125. $data=array_filter($data);
  126. ksort($data);
  127. $str='';
  128. foreach($data as $k=>$v) {
  129. $str.=$k.'='.$v.'&';
  130. }
  131. $str.='key='.$secrect_key;
  132. $data['sign']=md5($str);
  133. //生成签名算法
  134. $xml=$this->arraytoxml($data);
  135. $url='https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers'; //调用接口
  136. $res=$this->curl_post_ssl($url,$xml);
  137. $return=$this->xmltoarray($res);
  138. return $return;
  139. // print_r($return);
  140. // die;
  141. //返回来的结果是xml,最后转换成数组
  142. /*
  143. array(9) {
  144. ["return_code"]=>
  145. string(7) "SUCCESS"
  146. ["return_msg"]=>
  147. array(0) {
  148. }
  149. ["mch_appid"]=>
  150. string(18) "wx57676786465544b2a5"
  151. ["mchid"]=>
  152. string(10) "143345612"
  153. ["nonce_str"]=>
  154. string(32) "iw6TtHdOySMAfS81qcnqXojwUMn8l8mY"
  155. ["result_code"]=>
  156. string(7) "SUCCESS"
  157. ["partner_trade_no"]=>
  158. string(18) "201807011410504098"
  159. ["payment_no"]=>
  160. string(28) "1000018301201807019357038738"
  161. ["payment_time"]=>
  162. string(19) "2018-07-01 14:56:35"
  163. }
  164. */
  165. // $responseObj = simplexml_load_string($res, 'SimpleXMLElement', LIBXML_NOCDATA);
  166. // echo $res= $responseObj->return_code; //SUCCESS 如果返回来SUCCESS,则发生成功,处理自己的逻辑
  167. // return $responseObj;
  168. }
  169. }