php实现微信公众号企业转账功能


Posted in PHP onOctober 01, 2018

企业付款提供由商户直接付钱至用户微信零钱的能力,支持平台操作及接口调用两种方式,资金到账速度快,使用及查询方便。主要用来解决合理的商户对用户付款需求,比如:保险理赔、彩票兑换等等。

特点

  • 发起方式灵活,可通过页面或接口发起
  • 微信消息触达,用户及时获知入账详情
  • 支持实名校验,判断收款人真实身份
  • 通过openid即可实现付款,无需用户敏感隐私信息
  • 到账速度快,在发起后,用户可在几分钟内收到付款

企业转账需要到微信商户平台=》产品中心=》企业付款到零钱,开启此功能

php实现微信公众号企业转账功能

下面是程序截图:

第一步:设置配置参数

$url='https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers';
$pars = array();
$pars['mch_appid'] =$this->module['config']['appid'];
$pars['mchid']=$this->module['config']['mchid'];
$pars['nonce_str'] =random(32);
$pars['partner_trade_no'] =time().random(3,1);
$pars['openid'] =$openid;
$pars['check_name'] ='NO_CHECK' ;
//$pars['re_user_name'] ='' ;
$monet_finall = $price * 100;
$pars['amount'] =$monet_finall; //这里是折算成1%的所以要*100
$pars['desc'] ='您已成功提现 '.$price.' 现金';
$pars['spbill_create_ip'] =$this->module['config']['ip'];

ksort($pars, SORT_STRING);
$string1 = '';
foreach ($pars as $k => $v) {
  $string1 .= "{$k}={$v}&";
}

$string1 .= "key=".$this->module['config']['password'];
$pars['sign'] = strtoupper(md5($string1));
$xml = array2xml($pars);
$extras = array();
$extras['CURLOPT_CAINFO'] = ATTACHMENT_ROOT . '/withdraw/cert/rootca.pem.' . $_W['uniacid'];
$extras['CURLOPT_SSLCERT'] = ATTACHMENT_ROOT   . '/withdraw/cert/apiclient_cert.pem.' . $_W['uniacid'];
$extras['CURLOPT_SSLKEY'] = ATTACHMENT_ROOT . '/withdraw/cert/apiclient_key.pem.' . $_W['uniacid'];
$procResult = null;

第二步:CURL请求微信服务器

load()->func('communication');
$resp = ihttp_request($url, $xml, $extras);

其中ihttp_request函数内容是:

function ihttp_request($url, $post = '', $extra = array(), $timeout = 60) {
  $urlset = parse_url($url);
  if (empty($urlset['path'])) {
   $urlset['path'] = '/';
  }
  if (!empty($urlset['query'])) {
   $urlset['query'] = "?{$urlset['query']}";
  }
  if (empty($urlset['port'])) {
     }
  if (strexists($url, 'https://') && !extension_loaded('openssl')) {
   if (!extension_loaded("openssl")) {
     message('请开启您PHP环境的openssl');
   }
  }
  if (function_exists('curl_init') && function_exists('curl_exec')) {
   $ch = curl_init();
   if (!empty($extra['ip'])) {
     $extra['Host'] = $urlset['host'];
     $urlset['host'] = $extra['ip'];
     unset($extra['ip']);
   }
   curl_setopt($ch, CURLOPT_URL, $urlset['scheme'] . '://' . $urlset['host'] . ($urlset['port'] == '80' || empty($urlset['port']) ? '' : ':' . $urlset['port']) . $urlset['path'] . $urlset['query']);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
   @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
   curl_setopt($ch, CURLOPT_HEADER, 1);
   @curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
   if ($post) {
     if (is_array($post)) {
      $filepost = false;
            foreach ($post as $name => &$value) {
        if (version_compare(phpversion(), '5.6') >= 0 && substr($value, 0, 1) == '@') {
         $value = new CURLFile(ltrim($value, '@'));
        }
        if ((is_string($value) && substr($value, 0, 1) == '@') || (class_exists('CURLFile') && $value instanceof CURLFile)) {
         $filepost = true;
        }
      }
      if (!$filepost) {
        $post = http_build_query($post);
      }
     }
     curl_setopt($ch, CURLOPT_POST, 1);
     curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
   }
   if (!empty($GLOBALS['_W']['config']['setting']['proxy'])) {
     $urls = parse_url($GLOBALS['_W']['config']['setting']['proxy']['host']);
     if (!empty($urls['host'])) {
      curl_setopt($ch, CURLOPT_PROXY, "{$urls['host']}:{$urls['port']}");
      $proxytype = 'CURLPROXY_' . strtoupper($urls['scheme']);
      if (!empty($urls['scheme']) && defined($proxytype)) {
        curl_setopt($ch, CURLOPT_PROXYTYPE, constant($proxytype));
      } else {
        curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
        curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
      }
      if (!empty($GLOBALS['_W']['config']['setting']['proxy']['auth'])) {
        curl_setopt($ch, CURLOPT_PROXYUSERPWD, $GLOBALS['_W']['config']['setting']['proxy']['auth']);
      }
     }
   }
   curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
   curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
   curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
   curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
   curl_setopt($ch, CURLOPT_SSLVERSION, 1);
   if (defined('CURL_SSLVERSION_TLSv1')) {
     curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
   }
   curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0.1) Gecko/20100101 Firefox/9.0.1');
   if (!empty($extra) && is_array($extra)) {
     $headers = array();
     foreach ($extra as $opt => $value) {
      if (strexists($opt, 'CURLOPT_')) {
        curl_setopt($ch, constant($opt), $value);
      } elseif (is_numeric($opt)) {
        curl_setopt($ch, $opt, $value);
      } else {
        $headers[] = "{$opt}: {$value}";
      }
     }
     if (!empty($headers)) {
      curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
     }
   }
   $data = curl_exec($ch);
   $status = curl_getinfo($ch);
   $errno = curl_errno($ch);
   $error = curl_error($ch);
   curl_close($ch);
   if ($errno || empty($data)) {
     return error(1, $error);
   } else {
     return ihttp_response_parse($data);
   }
  }
  $method = empty($post) ? 'GET' : 'POST';
  $fdata = "{$method} {$urlset['path']}{$urlset['query']} HTTP/1.1\r\n";
  $fdata .= "Host: {$urlset['host']}\r\n";
  if (function_exists('gzdecode')) {
   $fdata .= "Accept-Encoding: gzip, deflate\r\n";
  }
  $fdata .= "Connection: close\r\n";
  if (!empty($extra) && is_array($extra)) {
   foreach ($extra as $opt => $value) {
     if (!strexists($opt, 'CURLOPT_')) {
      $fdata .= "{$opt}: {$value}\r\n";
     }
   }
  }
  $body = '';
  if ($post) {
   if (is_array($post)) {
     $body = http_build_query($post);
   } else {
     $body = urlencode($post);
   }
   $fdata .= 'Content-Length: ' . strlen($body) . "\r\n\r\n{$body}";
  } else {
   $fdata .= "\r\n";
  }
  if ($urlset['scheme'] == 'https') {
   $fp = fsockopen('ssl://' . $urlset['host'], $urlset['port'], $errno, $error);
  } else {
   $fp = fsockopen($urlset['host'], $urlset['port'], $errno, $error);
  }
  stream_set_blocking($fp, true);
  stream_set_timeout($fp, $timeout);
  if (!$fp) {
   return error(1, $error);
  } else {
   fwrite($fp, $fdata);
   $content = '';
   while (!feof($fp))
     $content .= fgets($fp, 512);
   fclose($fp);
   return ihttp_response_parse($content, true);
  }
}

第三步:解析分析微信服务器返回值并返回。

if (is_error($resp)) {
  $procResult = $resp;
} else {
  $arr=json_decode(json_encode((array) simplexml_load_string($resp['content'])), true);
  $xml = '<?xml version="1.0" encoding="utf-8"?>' . $resp['content'];
  $dom = new \DOMDocument();
  if ($dom->loadXML($xml)) {
    $xpath = new \DOMXPath($dom);
    $code = $xpath->evaluate('string(//xml/return_code)');
    $ret = $xpath->evaluate('string(//xml/result_code)');
    if (strtolower($code) == 'success' && strtolower($ret) == 'success') {
      $procResult = array('errno'=>0,'error'=>'success');;
    } else {
      $error = $xpath->evaluate('string(//xml/err_code_des)');
      $procResult = array('errno'=>-2,'error'=>$error);
    }
  } else {
    $procResult = array('errno'=>-1,'error'=>'未知错误');
  }
}

return $procResult;

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

PHP 相关文章推荐
php magic_quotes_gpc的一点认识与分析
Aug 18 PHP
PHP连接SQLServer2005 的问题解决方法
Jul 19 PHP
调整优化您的LAMP应用程序的5种简单方法
Jun 26 PHP
php教程 插件机制在PHP中实现方案
Nov 02 PHP
php模板原理讲解
Nov 13 PHP
php强制文件下载而非在浏览器打开的自定义函数分享
May 08 PHP
PHP中大于2038年时间戳的问题处理方案
Mar 03 PHP
PHP检测用户语言的方法
Jun 15 PHP
利用PHP脚本在Linux下用md5函数加密字符串的方法
Jun 29 PHP
YII视图整合kindeditor扩展的方法
Jul 13 PHP
PHP编程快速实现数组去重的方法详解
Jul 22 PHP
laravel邮件发送的实现代码示例
Jan 31 PHP
详解json在php中的应用
Sep 30 #PHP
php实现数组重复数字统计实例
Sep 30 #PHP
PHP APP微信提现接口代码
Sep 30 #PHP
PHP实现微信提现功能
Sep 30 #PHP
PHP实现微信商户支付企业付款到零钱功能
Sep 30 #PHP
Thinkphp 5.0实现微信企业付款到零钱
Sep 30 #PHP
PHP使用函数用法详解
Sep 30 #PHP
You might like
PHP自定义函数收代码
2010/08/01 PHP
CodeIgniter安全相关设置汇总
2014/07/03 PHP
PHP错误Warning:mysql_query()解决方法
2015/10/24 PHP
详解使用php调用微信接口上传永久素材
2017/04/11 PHP
在IE,Firefox,Safari,Chrome,Opera浏览器上调试javascript
2008/12/02 Javascript
Javascript计算时间差的函数分享
2011/07/04 Javascript
js处理json以及字符串的比较等常用操作
2013/09/08 Javascript
页面元素绑定jquery toggle后元素隐藏的解决方法
2014/03/27 Javascript
js创建表单元素并使用submit进行提交
2014/08/14 Javascript
JavaScript lastIndexOf方法入门实例(计算指定字符在字符串中最后一次出现的位置)
2014/10/17 Javascript
深入理解JavaScript系列(38):设计模式之职责链模式详解
2015/03/04 Javascript
jQuery插件jRumble实现网页元素抖动
2015/06/05 Javascript
jQuery实现图片走马灯效果的原理分析
2016/01/16 Javascript
详解webpack编译多页面vue项目的配置问题
2017/12/11 Javascript
nodejs结合socket.io实现websocket通信功能的方法
2018/01/12 NodeJs
Vue中正确使用Element-UI组件的方法实例
2020/10/13 Javascript
vue实现滚动鼠标滚轮切换页面
2020/12/13 Vue.js
Python线程中对join方法的运用的教程
2015/04/09 Python
Python将文本去空格并保存到txt文件中的实例
2018/07/24 Python
详解python实现识别手写MNIST数字集的程序
2018/08/03 Python
对python 多个分隔符split 的实例详解
2018/12/20 Python
python实现文件助手中查看微信撤回消息
2019/04/29 Python
python pandas生成时间列表
2019/06/29 Python
使用django和vue进行数据交互的方法步骤
2019/11/11 Python
浅谈PyTorch中in-place operation的含义
2020/06/27 Python
使用 prometheus python 库编写自定义指标的方法(完整代码)
2020/06/29 Python
利用Canvas模仿百度贴吧客户端loading小球的方法示例
2017/08/13 HTML / CSS
法国一家芭蕾舞鞋公司:Repetto
2018/11/12 全球购物
限量版运动鞋和街头服饰:TheDrop
2020/09/06 全球购物
一份比较全的PHP面试题
2016/07/29 面试题
模具专业毕业推荐信
2014/03/08 职场文书
三好学生个人先进事迹材料
2014/05/17 职场文书
小学优秀班主任事迹材料
2014/05/17 职场文书
年终考核实施方案
2014/05/26 职场文书
汽车专业求职信
2014/06/05 职场文书
学校门卫岗位职责范本
2014/06/30 职场文书