调整支付通知处理

This commit is contained in:
Anyon 2020-12-18 10:08:10 +08:00
parent f726a62718
commit a687b005d5

View File

@ -222,7 +222,8 @@ abstract class BasicWePay
*/ */
public function notify() public function notify()
{ {
$data = $_POST; $body = file_get_contents('php://input');
$data = json_decode($body, true);
if (isset($data['resource'])) { if (isset($data['resource'])) {
$aes = new DecryptAes($this->config['mch_v3_key']); $aes = new DecryptAes($this->config['mch_v3_key']);
$data['result'] = $aes->decryptToString( $data['result'] = $aes->decryptToString(