支付通知 wiki

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

@ -81,4 +81,26 @@ var WXPayment = function() {
<button type="button" onclick="WXPayment()">支付 ¥<?php echo ($order->total_fee / 100); ?></button>
```
###支付通知
###支付通知
```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();
```