浏览代码

update

master
DengBiao 1年前
父节点
当前提交
d561a95e15
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      src/applet/app/controllers/CallBackController.php

+ 3
- 1
src/applet/app/controllers/CallBackController.php 查看文件

@@ -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);
}
}
}

正在加载...
取消
保存