# 支付类(微信&支付宝)
支付类,采用了github 上用户 较为受欢迎的轮子 :[https://github.com/zoujingli/pay-php-sdk](https://github.com/zoujingli/pay-php-sdk)
这里已经整合到了框架里面了,我们只要按照下面方法使用即可
### 配置
在设计到业务的地方传入。IndexController里设置,传入配置如下:
~~~text-html-php
$config = [
// 微信支付参数
'wechat' => [
'debug' => false, // 沙箱模式
'app_id' => '', // 应用ID
'mch_id' => '', // 微信支付商户号
'mch_key' => '', // 微信支付密钥
'ssl_cer' => '', // 微信证书 cert 文件
'ssl_key' => '', // 微信证书 key 文件
'notify_url' => '', // 支付通知URL
'cache_path' => '',// 缓存目录配置(沙箱模式需要用到)
],
// 支付宝支付参数
'alipay' => [
'debug' => false, // 沙箱模式
'app_id' => '', // 应用ID
'public_key' => '', // 支付宝公钥(1行填写)
'private_key' => '', // 支付宝私钥(1行填写)
'notify_url' => '', // 支付通知URL
]
];
~~~
## [](https://github.com/zoujingli/pay-php-sdk#%E6%9E%B6%E6%9E%84)架构
由于各支付网关参差不齐,所以我们抽象了两个方法 `driver()`,`gateway()`。
两个方法的作用如下:
`driver()` : 确定支付平台,如 `alipay`,`wechat`;
`gateway()`: 确定支付网关,如 `app`,`pos`,`scan`,`transfer`,`wap`,`...`
具体实现可以查看源代码。
### [](https://github.com/zoujingli/pay-php-sdk#1%E6%94%AF%E4%BB%98%E5%AE%9D)1、支付宝
SDK 中对应的 driver 和 gateway 如下表所示:
| driver | gateway | 描述 |
| --- | --- | --- |
| alipay | web | 电脑支付 |
| alipay | wap | 手机网站支付 |
| alipay | app | APP 支付 |
| alipay | pos | 刷卡支付 |
| alipay | scan | 扫码支付 |
| alipay | bill | 电子账单 |
| alipay | transfer | 帐户转账(可用于平台用户提现) |
### [](https://github.com/zoujingli/pay-php-sdk#2%E5%BE%AE%E4%BF%A1)2、微信
SDK 中对应的 driver 和 gateway 如下表所示:
| driver | gateway | 描述 |
| --- | --- | --- |
| wechat | mp | 公众号支付 |
| wechat | miniapp | 小程序支付 |
| wechat | wap | H5 支付(不支持沙箱模式) |
| wechat | scan | 扫码支付 |
| wechat | pos | 刷卡支付 |
| wechat | app | APP 支付 |
| wechat | bill | 电子账单 |
| wechat | transfer | 企业付款到零钱(可用于平台用户提现) |
| wechat | bank | 企业付款到银行卡(可用于平台用户提现) |
## [](https://github.com/zoujingli/pay-php-sdk#%E6%93%8D%E4%BD%9C)操作
所有网关均支持以下方法
* apply(array $options)
说明:支付发起接口
参数:数组类型,订单业务配置项,包含 订单号,订单金额等
返回:mixed
* refund(array|string $options, $refund\_amount = null)
说明:发起退款接口
参数:`$options` 为字符串类型仅对`支付宝支付`有效,此时代表订单号,第二个参数为退款金额。
返回:mixed 退款成功,返回 服务器返回的数组;否则返回 false;
* close(array|string $options)
说明:关闭订单接口
参数:`$options` 为字符串类型时代表订单号,如果为数组,则为关闭订单业务配置项,配置项内容请参考各个支付网关官方文档。
返回:mixed 关闭订单成功,返回 服务器返回的数组;否则返回 false;
* find(string $out\_trade\_no)
说明:查找订单接口
参数:`$out_trade_no` 为订单号。
返回:mixed 查找订单成功,返回 服务器返回的数组;否则返回 false;
* verify($data, $sign = null)
说明:验证服务器返回消息是否合法
参数:`$data` 为服务器接收到的原始内容,`$sign` 为签名信息,当其为空时,系统将自动转化 `$data` 为数组,然后取 `$data['sign']`。
返回:mixed 验证成功,返回 服务器返回的数组;否则返回 false;
## [](https://github.com/zoujingli/pay-php-sdk#%E5%AE%9E%E4%BE%8B)实例
~~~text-html-php
$config = [
// 微信支付参数
'wechat' => [
'debug' => false, // 沙箱模式
'app_id' => '', // 应用ID
'mch_id' => '', // 微信支付商户号
'mch_key' => '', // 微信支付密钥
'ssl_cer' => '', // 微信证书 cert 文件
'ssl_key' => '', // 微信证书 key 文件
'notify_url' => '', // 支付通知URL
'cache_path' => '',// 缓存目录配置(沙箱模式需要用到)
],
// 支付宝支付参数
'alipay' => [
'debug' => false, // 沙箱模式
'app_id' => '', // 应用ID
'public_key' => '', // 支付宝公钥(1行填写)
'private_key' => '', // 支付宝私钥(1行填写)
'notify_url' => '', // 支付通知URL
]
];
// 实例支付对象
$pay = new \extend\payment\Pay($config);
try {
$options = $pay->driver('alipay')->gateway('app')->apply($payOrder);
$gateway = $this->request->isMobile() ? 'wap' : 'web';
$result = $pay->driver('alipay')->gateway($gateway)->apply($options);
} catch (Exception $e) {
echo "创建订单失败," . $e->getMessage();
}
~~~
## [](https://github.com/zoujingli/pay-php-sdk#%E9%80%9A%E7%9F%A5)通知
#### [](https://github.com/zoujingli/pay-php-sdk#%E6%94%AF%E4%BB%98%E5%AE%9D)支付宝
~~~text-html-php
// 实例支付对象
$pay = new \extend\payment\Pay($config);
if ($pay->driver('alipay')->gateway()->verify($_POST)) {
logs($_POST, '', 'alipay');
} else {
logs($_POST, '', 'alipay');
}
~~~
#### [](https://github.com/zoujingli/pay-php-sdk#%E5%BE%AE%E4%BF%A1)微信
~~~text-html-php
$pay = new \extend\payment\Pay($config);
$verify = $pay->driver('wechat')->gateway('mp')->verify(file_get_contents('php://input'));
if ($verify) {
file_put_contents('notify.txt', "收到来自微信的异步通知\r\n", FILE_APPEND);
file_put_contents('notify.txt', "订单单号:{$verify['out_trade_no']}\r\n", FILE_APPEND);
file_put_contents('notify.txt', "订单金额:{$verify['total_fee']}\r\n\r\n", FILE_APPEND);
} else {
file_put_contents('notify.txt', "收到异步通知\r\n", FILE_APPEND);
}
echo "success";
~~~
- 序言
- 安装 Yaf
- Yaf基础知识
- 1.运行流程
- 2.YAF架构
- 3.目录结构
- 4.Yaf的配置
- 5.Yaf的Bootstrap
- 6.Yaf的多模块配置
- 7.Yaf中使用命名空间
- 本书框架配置
- 1.框架目录结构
- 2.数据库配置
- 3.缓存配置
- 4.全局配置
- 5.公共助手函数
- 请求与响应
- 1.请求-Request
- 2.响应-Response
- 数据库操作
- 使用think-orm
- 接口开发
- 1.RESTful接口设计
- 2.Yar RPC接口设计
- 数据验证
- 数据验证 - validate
- 网页开发
- Session
- Cookie
- 路由设置
- 工具类
- 1.Rsa加密
- 2.Random快速生成随机数
- 3.Cache - 缓存
- 4.Weapp - 微信小程序类
- 5.Qiniu - 七牛云存储使用
- 6.支付类(微信&支付宝)
- 7.Logs - 日志记录