thinkphp 微信公众号支付

时间:2022-10-25 11:01:57

公众号支付是指在微信app中访问的页面通过js直接调起微信支付;
因此页面必须是在微信中打开的;
示例项目:https://github.com/baijunyao/thinkphp-bjyadmin
一:设置域名
登录微信公众平台;
微信支付中设置支付授权目录;把域名改为自己的;
注意最后是有一个斜线的 / 
thinkphp 微信公众号支付
设置授权域名;
thinkphp 微信公众号支付
二:导入sdk
/ThinkPHP/Library/Vendor/Weixinpay
好吧;还是没忍住要吐槽;鹅厂的sdk那酸爽谁用谁知道;项目中的sdk是我根据官方文档重构精简打造而成的;
需要注意的是170行处的商品数据需要根据业务实际情况从数据库中获取;

$openid=$result['openid'];
// 订单数据 请根据订单号out_trade_no 从数据库中查出实际的body、total_fee、out_trade_no、product_id
$order=array(
'body'=>'test',// 商品描述(需要根据自己的业务修改)
'total_fee'=>1,// 订单金额 以(分)为单位(需要根据自己的业务修改)
'out_trade_no'=>$out_trade_no,// 订单号(需要根据自己的业务修改)
'product_id'=>'1',// 商品id(需要根据自己的业务修改)
'trade_type'=>'JSAPI',// JSAPI公众号支付
'openid'=>$openid// 获取到的openid
);
PHP

三:配置项
/Application/Common/Conf/config.php

'WEIXINPAY_CONFIG'       => array(
'APPID' => '', // 微信支付APPID
'MCHID' => '', // 微信支付MCHID 商户收款账号
'KEY' => '', // 微信支付KEY
'APPSECRET' => '', // 公众帐号secert (公众号支付专用)
'NOTIFY_URL' => 'http://baijunyao.com/Api/Weixinpay/notify', // 接收支付状态的连接
),
PHP

在微信公众平台和微信支付平台凑齐上面这些参数;
四:支付方法
/Application/Api/Controller/WeixinpayController.class.php

/**
* 公众号支付 必须以get形式传递 out_trade_no 参数
* 示例请看 /Application/Home/Controller/IndexController.class.php
* 中的wexinpay_js方法
*/

public function pay(){
// 导入微信支付sdk
Vendor('Weixinpay.Weixinpay');
$wxpay=new \Weixinpay();
// 获取jssdk需要用到的数据
$data=$wxpay->getParameters();
// 将数据分配到前台页面
$assign=array(
'data'=>json_encode($data)
);
$this->assign($assign);
$this->display();
}
PHP

需要html的配合:/tpl/Api/Weixinpay/pay.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body style="text-align: center;">
<button onclick="getOrder()">购买</button>

<jquery />
<script>
function onBridgeReady(){
var data={$data};
WeixinJSBridge.invoke(
'getBrandWCPayRequest', data,
function(res){
if(res.err_msg == "get_brand_wcpay_request:ok" ) {
// 使用以上方式判断前端返回,微信团队郑重提示:res.err_msg将在用户支付成功后返回 ok,但并不保证它绝对可靠。
}else{
alert(res.err_code+res.err_desc+res.err_msg); // 显示错误信息
}
}
);
}
if (typeof WeixinJSBridge == "undefined"){
if( document.addEventListener ){
document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false);
}else if (document.attachEvent){
document.attachEvent('WeixinJSBridgeReady', onBridgeReady);
document.attachEvent('onWeixinJSBridgeReady', onBridgeReady);
}
}else{
onBridgeReady();
}
</script>
</body>
</html>
HTML

调用示例:/Application/Home/Controller/IndexController.class.php 中的wexinpay_js方法

/**
* 微信 公众号jssdk支付
*/

public function wexinpay_js(){
// 此处根据实际业务情况生成订单 然后拿着订单去支付
// 用时间戳虚拟一个订单号 (请根据实际业务更改)
$out_trade_no=time();
// 组合url
$url=U('Api/Weixinpay/pay',array('out_trade_no'=>$out_trade_no));
// 前往支付
redirect($url);
}
PHP

五:异步接收通知
/Application/Api/Controller/WeixinpayController.class.php

/**
* notify_url接收页面
*/

public function notify(){
// 导入微信支付sdk
Vendor('Weixinpay.Weixinpay');
$wxpay=new \Weixinpay();
$result=$wxpay->notify();
if ($result) {
// 验证成功 修改数据库的订单状态等 $result['out_trade_no']为订单id

}
}
PHP

//*********************************增加curl_get_contents函数的分割线****************************
如果是整合到自己的项目中;则需要在自己的公共函数中增加curl_get_contents;
/Application/Common/Common/function.php

/**
* 使用curl获取远程数据
* @param string $url url连接
* @return string 获取到的数据
*/

function curl_get_contents($url){
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url); //设置访问的url地址
// curl_setopt($ch,CURLOPT_HEADER,1); //是否显示头部信息
curl_setopt($ch, CURLOPT_TIMEOUT, 5); //设置超时
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); //用户访问代理 User-Agent
curl_setopt($ch, CURLOPT_REFERER,$_SERVER['HTTP_HOST']); //设置 referer
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1); //跟踪301
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //返回结果
$r=curl_exec($ch);
curl_close($ch);
return $r;
}
PHP


五:异步接收通知
/Application/Api/Controller/WeixinpayController.class.php

/**
* notify_url接收页面
*/

public function notify(){
// ↓↓↓下面的file_put_contents是用来简单查看异步发过来的数据 测试完可以删除;↓↓↓
// 获取xml
$xml=file_get_contents('php://input', 'r');
//转成php数组 禁止引用外部xml实体
libxml_disable_entity_loader(true);
$data= json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA));
file_put_contents('./notify.text', $data);
// ↑↑↑上面的file_put_contents是用来简单查看异步发过来的数据 测试完可以删除;↑↑↑
// 导入微信支付sdk
Vendor('Weixinpay.Weixinpay');
$wxpay=new \Weixinpay();
$result=$wxpay->notify();
if ($result) {
// 验证成功 修改数据库的订单状态等 $result['out_trade_no']为订单id

}
}
PHP


6.回调验证签名

$signA = "appid=".$data['appid']."&bank_type=".$data['bank_type']."&cash_fee=".$data['cash_fee']."&fee_type=".$data  

['fee_type']."&is_subscribe=".$data['is_subscribe']."&mch_id=".$data['mch_id']."&nonce_str=".$data['nonce_str']."&openid=".

$data['openid']."&out_trade_no=".$data['out_trade_no']."&result_code=".$data['result_code']."&return_code=".$data

['return_code']."&time_end=".$data['time_end']."&total_fee=".$data['total_fee']."&trade_type=".$data

['trade_type']."&transaction_id=".$data['transaction_id']."&key=你的微信支付KEY";
$sign = strtoupper(MD5($signA));
if($sign!=$data['sign']){
//不同就跳出
exit();
}

值得一提的是 如果有多个订单同时支付 可使用 微信 attach字段 (sring 127)传入多个订单号