


PHP development WeChat payment enterprise payment example code
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
#Parameter reference: Enterprise payment API documentation1. Get CODE (index.php page)##./** * 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
<?php //信息回调文件所在的服务器位置$str="http://www.xxx.com/company_pay/getInfo.php";$str_url=urlencode($str);$appid = "xxxx3e5273505e";$url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$appid.'&redirect_uri='.$str_url.'&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect';
header("Location:".$url);?>
Copy after login
2. Information callback page code processing (getInfo.php) <?php //信息回调文件所在的服务器位置$str="http://www.xxx.com/company_pay/getInfo.php";$str_url=urlencode($str);$appid = "xxxx3e5273505e";$url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$appid.'&redirect_uri='.$str_url.'&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect'; header("Location:".$url);?>
<?php$appid = "wxxxxx3505e";//你的微信公众平台的appid$secret = "fxxxxx71xxx4cda2a671";//你微信公众平台的secret$code = $_GET["code"];$get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$get_token_url);
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);$res = curl_exec($ch);
curl_close($ch);$json_obj = json_decode($res,true);//根据openid和access_token查询用户信息$access_token = $json_obj['access_token'];$openid = $json_obj['openid'];$get_user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token.'&openid='.$openid.'&lang=zh_CN';$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$get_user_info_url);
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);$res = curl_exec($ch);
curl_close($ch);//解析json$user_obj = json_decode($res,true);//var_dump($user_obj);echo "<br/>"."-----".$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 "-----<br/>签名:".$sign."<br/>*****";//die;$data="<xml>
<mch_appid>".$mch_appid."</mch_appid>
<mchid>".$mchid."</mchid>
<nonce_str>".$nonce_str."</nonce_str>
<partner_trade_no>".$partner_trade_no."</partner_trade_no>
<openid>".$openid."</openid>
<check_name>".$check_name."</check_name>
<re_user_name>".$re_user_name."</re_user_name>
<amount>".$amount."</amount>
<desc>".$desc."</desc>
<spbill_create_ip>".$spbill_create_ip."</spbill_create_ip>
<sign>".$sign."</sign>
</xml>";//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 "-----<br/>请求返回值:";echo $infos->return_code;echo "<br/>*****";?>
Copy after login
3. Generate the signature function file (api.php) <?php$appid = "wxxxxx3505e";//你的微信公众平台的appid$secret = "fxxxxx71xxx4cda2a671";//你微信公众平台的secret$code = $_GET["code"];$get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';$ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$get_token_url); curl_setopt($ch,CURLOPT_HEADER,0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);$res = curl_exec($ch); curl_close($ch);$json_obj = json_decode($res,true);//根据openid和access_token查询用户信息$access_token = $json_obj['access_token'];$openid = $json_obj['openid'];$get_user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token.'&openid='.$openid.'&lang=zh_CN';$ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$get_user_info_url); curl_setopt($ch,CURLOPT_HEADER,0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);$res = curl_exec($ch); curl_close($ch);//解析json$user_obj = json_decode($res,true);//var_dump($user_obj);echo "<br/>"."-----".$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 "-----<br/>签名:".$sign."<br/>*****";//die;$data="<xml> <mch_appid>".$mch_appid."</mch_appid> <mchid>".$mchid."</mchid> <nonce_str>".$nonce_str."</nonce_str> <partner_trade_no>".$partner_trade_no."</partner_trade_no> <openid>".$openid."</openid> <check_name>".$check_name."</check_name> <re_user_name>".$re_user_name."</re_user_name> <amount>".$amount."</amount> <desc>".$desc."</desc> <spbill_create_ip>".$spbill_create_ip."</spbill_create_ip> <sign>".$sign."</sign> </xml>";//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 "-----<br/>请求返回值:";echo $infos->return_code;echo "<br/>*****";?>
<?php/** * 作用:格式化参数,签名过程需要使用 */function formatBizQueryParaMap($paraMap, $urlencode){ $buff = ""; ksort($paraMap); foreach ($paraMap as $k => $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.'</br>'; //签名步骤二:在string后加入KEY $String = $String."&key=vhmake666vhmake666vhmake666vhmak"; //echo "【string2】".$String."</br>"; //签名步骤三:MD5加密 $String = md5($String); //echo "【string3】 ".$String."</br>"; //签名步骤四:所有字符转为大写 $result_ = strtoupper($String); //echo "【result】 ".$result_."</br>"; return $result_; }
<xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[]]></return_msg><mch_appid><![CDATA[wxec38b8ff840bd989]]></mch_appid><mchid><![CDATA[10013274]]></mchid><device_info><![CDATA[]]></device_info><nonce_str><![CDATA[lxuDzMnRjpcXzxLx0q]]></nonce_str><result_code><![CDATA[SUCCESS]]></result_code><partner_trade_no><![CDATA[10013574201505191526582441]]></partner_trade_no><payment_no><![CDATA[1000018301201505190181489473]]></payment_no><payment_time><![CDATA[2015-05-19 15:26:59]]></payment_time></xml>
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
