資源簡介
微信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>微信獲取用戶信息demo tle>
????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
評論
共有 條評論