资源简介

微信h5 微信企业打款 微信公众号支付超级简单写法!轻松配置使用!

一个PHP文件搞定微信支付系列

网上的很多PHP微信支付接入教程都颇为复杂,且需要配置和引入较多的文件,本人通过整理后给出一个单文件版的(代码只有200行左右),每个文件独立运行,不依赖和引入其他文件,希望可以给各位想接入微信支付的带来些许帮助和借鉴意义。

# 环境依赖

PHP5.0以上,且需要开启CURL服务、SSL服务。

# 文件对应说明

native.php   原生支付(扫码支付)

barcode.php   刷卡支付(商户扫描用户收款码)

jsapi.php    公众号支付

H5.php    H5支付

redpack.php   现金红包

transfers.php 企业付款到零钱

notify.php    异步回调通知

refund.php 退款

资源截图

代码片段和文件信息

error_reporting(1);
header(‘Content-type:text/html; Charset=utf-8‘);
/* 配置开始 */
$appid = ‘‘;  //微信公众平台->开发->基本配置->AppID
$appKey = ‘‘;   //微信公众平台->开发->基本配置->AppSecret
/* 配置结束 */

//①、获取用户openid
$wxPay = new WxService($appid$appKey);
$data = $wxPay->GetOpenid();      //获取openid
if(!$data[‘openid‘]) exit(‘获取openid失败‘);
//②、获取用户信息
$user = $wxPay->getUserInfo($data[‘openid‘]$data[‘access_token‘]);
?>



    ta charset=“UTF-8“>
    ta name=“renderer“ content=“webkit“ />
    ta http-equiv=“X-UA-Compatible“ content=“IE=edgeChrome=1“ />
    ta name=“viewport“ content=“width=device-width initial-scale=1.0 maximum-scale=1.0“ />
    tle>微信获取用户信息demotle>
    nk href=“https://cdn.bootcss.com/bootstrap/3.3.0/css/

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-11-05 06:19  weixinPay-master\
     文件        1507  2019-11-05 06:19  weixinPay-master\README.md
     文件        7562  2019-11-05 06:19  weixinPay-master\authorize.php
     文件        8590  2019-11-05 06:19  weixinPay-master\barcode.php
     文件        7363  2019-11-05 06:19  weixinPay-master\h5.php
     文件       12216  2019-11-05 06:19  weixinPay-master\jsapi.php
     文件        7732  2019-11-05 06:19  weixinPay-master\native.php
     文件        3575  2019-11-05 06:19  weixinPay-master\notify.php
     文件        5946  2019-11-05 06:19  weixinPay-master\orderquery.php
     文件       11180  2019-11-05 06:19  weixinPay-master\redpack.php
     文件        7236  2019-11-05 06:19  weixinPay-master\refund.php
     文件        6165  2019-11-05 06:19  weixinPay-master\refund_query.php
     文件        7305  2019-11-05 06:19  weixinPay-master\reverse.php
     文件       10142  2019-11-05 06:19  weixinPay-master\transfers.php

评论

共有 条评论