thinkphp3.2集成微信JSAPI支付

1、在thinkphp框架中新建如下图的文件夹与文件

5A3NXXCVKXA`NHSJ.png]1
Weixinpay.php的源码如下:


/**
 * Created by PhpStorm.
 * User: blue
 * Date: 2017/7/31
 * Time: 22:36
 */
error_reporting(E_ALL);
ini_set('display_errors', '1');
// 定义时区
ini_set('date.timezone','Asia/Shanghai');
class Weixinpay {
    // 定义配置项
    private $config;

    private $money;
    // 构造函数
    public function __construct($config){
        $this->config = $config;
        $this->money = $config['money'];
    }

    /**
     * description:统一下单
     * @param $order  订单 必须包含支付所需要的参数 body(产品描述)、total_fee(订单金额)、out_trade_no(订单号)、product_id(产品id)、trade_type(类型:JSAPI,NATIVE,APP)
     * @return array
     */
    public function unifiedOrder($order){
        // 获取配置项
        $weixinpay_config = $this->config;
        $config = array(
            'appid' => $weixinpay_config['APPID'],
            'mch_id' => $weixinpay_config['MCHID'],
            'nonce_str' => 'test',
            'spbill_create_ip' => $_SERVER['REMOTE_ADDR'],
            'notify_url' => $weixinpay_config['NOTIFY_URL']
        );
        // 合并配置数据和订单数据
        $data = array_merge($order,$config);
        // 生成签名
        $sign = $this->makeSign($data);
        $data['sign'] = $sign;
        $xml = $this->toXml($data);
        $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';//接收xml数据的文件
        $header[] = "Content-type: text/xml";//定义content-type为xml,注意是数组
        $ch = curl_init ($url);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 兼容本地没有指定curl.cainfo路径的错误
        curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
        $response = curl_exec($ch);
        if(curl_errno($ch)){
            // 显示报错信息;终止继续执行
            die(curl_error($ch));
        }
        curl_close($ch);
        $result = $this->toArray($response);
        // 显示错误信息
        if ($result['return_code'] == 'FAIL') {
            die($result['return_msg']);
        }
        $result['sign']=$sign;
        $result['nonce_str']='test';
        return $result;
    }
    /**
     * 验证
     * @return array 返回数组格式的notify数据
     */
    public function notify(){
        // 获取xml
        $xml = file_get_contents('php://input', 'r');
        // 转成php数组
        $data = $this->toArray($xml);
        // 保存原sign
        $data_sign = $data['sign'];
        // sign不参与签名
        unset($data['sign']);
        $sign = $this->makeSign($data);
        // 判断签名是否正确  判断支付状态
        if ($sign===$data_sign && $data['return_code']=='SUCCESS' && $data['result_code']=='SUCCESS') {
            $result = $data;
        }else{
            $result = false;
        }
        return $result;
    }
    /**
     * 输出xml字符
     * @throws WxPayException
     **/
    public function toXml($data){
        if(!is_array($data) || count($data) <= 0){
            throw new WxPayException("数组数据异常!");
        }
        $xml = "";
        foreach ($data as $key=>$val){
            if (is_numeric($val)){
                $xml.="<".$key.">".$val.".$key.">";
            }else{
                $xml.="<".$key.">.$val."]]>.$key.">";
            }
        }
        $xml.="";
        return $xml;
    }
    /**
     * 生成签名
     * @return 签名,本函数不覆盖sign成员变量,如要设置签名需要调用SetSign方法赋值
     */
    public function makeSign($data){
        // 去空
        $data=array_filter($data);
        //签名步骤一:按字典序排序参数
        ksort($data);
        $string_a=http_build_query($data);
        $string_a=urldecode($string_a);
        //签名步骤二:在string后加入KEY
        $config=$this->config;
        $string_sign_temp=$string_a."&key=".$config['KEY'];
        //签名步骤三:MD5加密
        $sign = md5($string_sign_temp);
        // 签名步骤四:所有字符转为大写
        $result=strtoupper($sign);
        return $result;
    }
    /**
     * 将xml转为array
     * @param  string $xml xml字符串
     * @return array       转换得到的数组
     */
    public function toArray($xml){
        //禁止引用外部xml实体
        libxml_disable_entity_loader(true);
        $result= json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
        return $result;
    }
    /**
     * 获取jssdk需要用到的数据
     * @return array jssdk需要用到的数据
     */
    public function getParameters(){
        // 获取配置项
            $config = $this->config;
            $out_trade_no = $config['MCHID'].date("YmdHis");
            $openid = session('openId');//这边的Openid我是用过session来控制的,不管用什么方式,一定要有
            $order = array(
                'body'=>'发布苗木信息',// 商品描述(需要根据自己的业务修改)
                'total_fee'=>$this->money,// 订单金额  以(分)为单位(需要根据自己的业务修改)
//                'total_fee'=>1,// 订单金额  以(分)为单位(需要根据自己的业务修改)
                'out_trade_no'=>$out_trade_no,// 订单号(需要根据自己的业务修改)
                'product_id'=>'1',// 商品id(需要根据自己的业务修改)
                'trade_type'=>'JSAPI',// JSAPI公众号支付
                'openid'=>$openid// 获取到的openid
            );
            // 统一下单 获取prepay_id
            $unified_order = $this->unifiedOrder($order);
            // 获取当前时间戳
            $time=time();
            // 组合jssdk需要用到的数据
            $data = array(
                'appId'=>$config['APPID'], //appid
                'timeStamp'=>strval($time), //时间戳
                'nonceStr'=>$unified_order['nonce_str'],// 随机字符串
                'package'=>'prepay_id='.$unified_order['prepay_id'],// 预支付交易会话标识
                'signType'=>'MD5'//加密方式
            );
            // 生成签名
            $data['paySign'] = $this->makeSign($data);
            return $data;
//        }
    }
    /**
     * 生成支付二维码
     * @param  array $order 订单 必须包含支付所需要的参数 body(产品描述)、total_fee(订单金额)、out_trade_no(订单号)、product_id(产品id)、trade_type(类型:JSAPI,NATIVE,APP)
     */
    public function pay($order){
        $result=$this->unifiedOrder($order);
        $decodeurl=urldecode($result['code_url']);
        qrcode($decodeurl);
    }
    /**
     * curl 请求http
     */
    public 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;
    }
}

2、在配置文件中添加如下配置项

//微信支付正式参数
‘WEIXINPAY_CONFIG’=>array(
‘APPID’=>”,// 微信支付APPID
‘MCHID’=>”,// 微信支付MCHID 商户收款账号
‘KEY’=>”, // 微信支付KEY
‘APPSECRET’=>”, //公众帐号secert
‘NOTIFY_URL’=>’/index.php/Home/Notify/notify’,// 接收支付状态的连接 改成自己的域名
‘money’=>6000 //支付金额
),

//微信支付正式参数  管理员
'ADMIN_WEIXINPAY_CONFIG'=>array(
    'APPID'=>'',// 微信支付APPID
    'MCHID'=>'',// 微信支付MCHID 商户收款账号
    'KEY'=>'', // 微信支付KEY
    'APPSECRET'=>'', //公众帐号secert
    'NOTIFY_URL'=>'/index.php/Home/Notify/notify',// 接收支付状态的连接  改成自己的域名
    'money'=>1 //支付金额
),
```
##3、在项目下新建NotifyController.class.php 注意这个类不要继承任何的基类,也不要传递任何的参数。
![UW_HJZ7TB~0@H2RAU9}[email protected]][2]
主要代码:
##4、新建一个controller下面的infoController的文件,本文件用于传递微信支付的参数。
![_CPQNQUWJ220758{_`[THB6.png][3]
关键代码如下:
##5、新建一个view下面的html的文件,本文件用于微信的jsapi支付。
![L2E}ESJAI~$KVY1XZTJ8VAQ.png][4]
主要代码:

6、最后记得配置微信支付授权目录的时候,要定位到你发起微信支付这个页面的控制器上,并且最后还必须加上一个/

例如本篇博客的demo,配置如下:/index.php/Home/Info/

你可能感兴趣的:(tp学习,微信,thinkphp,微信)