PHP development WeChat payment enterprise payment example code

小云云
Release: 2023-03-20 22:54:01
Original
2832 people have browsed it

Application scenarios of enterprise payment: Public accounts make payments to users who have followed them, such as processing refunds, financial settlements, etc. This article mainly shares with you the example code of developing WeChat payment enterprise payment in PHP, hoping to help everyone.

Instructions

1. The certificate needs to be the certificate from your own merchant (note: the certificate path must be an absolute path. If you use a relative path, the following error will be reported.

unable to use client certificate (no key found or wrong pass phrase?)

2. Just fill in your own appid, secret and key

Let’s talk about the implementation first. Idea:

1. First get the openid, the specific method is as follows

2. Fill in the required parameters, generate a signature, etc., the specific method is as follows

/** * API 参数 * @var array * ‘mch_appid’ # 公众号APPID * ‘mchid’ # 商户号 * ‘device_info’ # 设备号 * ‘nonce_str’ # 随机字符串 * ‘partner_trade_no’ # 商户订单号 * ‘openid’ # 收款用户openid * ‘check_name’ # 校验用户姓名选项 针对实名认证的用户 * ‘re_user_name’ # 收款用户姓名 * ‘amount’ # 付款金额 * ‘desc’ # 企业付款描述信息 * ‘spbill_create_ip’ # Ip地址 * ‘sign’ # 签名 */
Copy after login
##.
#Parameter reference: Enterprise payment API documentation

1. Get CODE (index.php page)

Copy after login

2. Information callback page code processing (getInfo.php)

"."-----".$openid."*****";$mch_appid=$appid;$mchid='10000401';//商户号$nonce_str='vhmake'.rand(100000, 999999);//随机数$partner_trade_no='VH'.time().rand(10000, 99999);//商户订单号$openid=$openid;//用户唯一标识$check_name='NO_CHECK';//校验用户姓名选项,NO_CHECK:不校验真实姓名 FORCE_CHECK:强校验真实姓名(未实名认证的用户会校验失败,无法转账)OPTION_CHECK:针对已实名认证的用户才校验真实姓名(未实名认证用户不校验,可以转账成功)$re_user_name='[北京微函工坊科技有限公司](http://www.vhmake.com)';//用户姓名$amount=100;//金额(以分为单位,必须大于100)$desc='[北京微函工坊科技有限公司](http://www.vhmake.com)';//描述$spbill_create_ip=$_SERVER["REMOTE_ADDR"];//请求ip//封装成数据$dataArr=array();$dataArr['amount']=$amount;$dataArr['check_name']=$check_name;$dataArr['desc']=$desc;$dataArr['mch_appid']=$mch_appid;$dataArr['mchid']=$mchid;$dataArr['nonce_str']=$nonce_str;$dataArr['openid']=$openid;$dataArr['partner_trade_no']=$partner_trade_no;$dataArr['re_user_name']=$re_user_name;$dataArr['spbill_create_ip']=$spbill_create_ip;require 'api.php';$sign=getSign($dataArr);echo "-----
签名:".$sign."
*****";//die;$data=" ".$mch_appid." ".$mchid." ".$nonce_str." ".$partner_trade_no." ".$openid." ".$check_name." ".$re_user_name." ".$amount." ".$desc." ".$spbill_create_ip." ".$sign." ";//var_dump($data);$ch = curl_init ();$MENU_URL="https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers"; curl_setopt ( $ch, CURLOPT_URL, $MENU_URL ); curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" ); curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE ); curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );$zs1="/xxxx/xxx/xxxxxx/apiclient_cert.pem";//注意:填写的路径必须为绝对路径,不可以填写相对路径$zs2="/xxxx/xxx/xxxxx/apiclient_key.pem"; curl_setopt($ch,CURLOPT_SSLCERT,$zs1); curl_setopt($ch,CURLOPT_SSLKEY,$zs2);// curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01;// Windows NT 5.0)');curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 ); curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 ); curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );$info = curl_exec ( $ch );$infos=simplexml_load_string($info);if (curl_errno ( $ch )) { echo 'Errno:::' . curl_error ( $ch ); } curl_close ( $ch );echo "-----
请求返回值:";echo $infos->return_code;echo "
*****";?>
Copy after login

3. Generate the signature function file (api.php)

 $v) { if($urlencode) { $v = urlencode($v); } $buff .= $k . "=" . $v . "&"; } if (strlen($buff) > 0) { $reqPar = substr($buff, 0, strlen($buff)-1); } return $reqPar; }/** * 作用:生成签名 */function getSign($Obj){ foreach ($Obj as $k => $v) { $Parameters[$k] = $v; } //签名步骤一:按字典序排序参数 ksort($Parameters); $String = formatBizQueryParaMap($Parameters, false); //echo '【string1】'.$String.'
'; //签名步骤二:在string后加入KEY $String = $String."&key=vhmake666vhmake666vhmake666vhmak"; //echo "【string2】".$String."
"; //签名步骤三:MD5加密 $String = md5($String); //echo "【string3】 ".$String."
"; //签名步骤四:所有字符转为大写 $result_ = strtoupper($String); //echo "【result】 ".$result_."
"; return $result_; }
Copy after login

Return the return parameters in xml format after success (please refer to the development documentation for details)

Copy after login
Related recommendations:

Detailed explanation of the PHP backend interface of App WeChat payment

Research and sharing on WeChat payment interface

Use PHP to implement APP Example analysis of WeChat payment

The above is the detailed content of PHP development WeChat payment enterprise payment example code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!