Browse Source

update

master
DengBiao 1 year ago
parent
commit
d561a95e15
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/applet/app/controllers/CallBackController.php

+ 3
- 1
src/applet/app/controllers/CallBackController.php View File

@@ -173,7 +173,9 @@ class CallBackController extends \Phalcon\Mvc\Controller
$this->logger($args, 'wxpayAsyncNotifyCallBack', true);

if ($this->request->isPost()) {
$this->logger($_POST, 'wxpayAsyncNotifyCallBack_post', true);
$data = file_get_contents('php://input');
$data = json_decode($data, true);
$this->logger($data, 'wxpayAsyncNotifyCallBack_post', true);
}
}
}

Loading…
Cancel
Save