支付通知 wiki

Frye 2015-08-22 17:11:37 +08:00
parent b450c5e98c
commit 977ba69fdc

@ -82,3 +82,25 @@ var WXPayment = function() {
```
###支付通知
```php
<?php
use Overtrue\Wechat\Payment\Notify;
$notify = new Notify(
APP_ID,
APP_KEY,
MCH_ID,
MCH_KEY
);
$transaction = $notify->verify();
if (!$transaction) {
$notify->reply('FAIL', 'verify transaction error');
}
var_dump($transaction);
$notify->reply();
```