An open API service indexing awesome lists of open source software.

https://github.com/peteryangs/wechatpay

微信支付sdk
https://github.com/peteryangs/wechatpay

Last synced: 10 months ago
JSON representation

微信支付sdk

Awesome Lists containing this project

README

          

# wechatpay
微信支付sdk

### 小程序和公众号支付

##### 支付请求

```php
getType('weapp');

//获取支付参数
$param=$weapp->getPayParam(
'支付测试',
time(),
1,
'127.0.0.1',
'http://www.baidu.com',
'xxx',
'123'
);

```

##### 支付通知检查

```php
check();
```

##### 退款申请
```php
refund(
'1111111',
time(),
1,
1,
'http://www.baidu.com'
);
```

##### 退款通知检查
```php
check_refund();
```

##### 成功应答
```php
return_success();
```

#### 其他支付完善中。。。。