mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修改支付宝支付
This commit is contained in:
parent
dd9ff2856f
commit
b8fd2795c7
@ -200,11 +200,10 @@ abstract class BasicAliPay
|
|||||||
$method = str_replace('.', '_', $this->options['method']) . '_response';
|
$method = str_replace('.', '_', $this->options['method']) . '_response';
|
||||||
if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') {
|
if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') {
|
||||||
throw new \WeChat\Exceptions\InvalidResponseException(
|
throw new \WeChat\Exceptions\InvalidResponseException(
|
||||||
"\nResultError" .
|
"Error: " .
|
||||||
(empty($data[$method]['code']) ? '' : "\n{$data[$method]['msg']}[{$data[$method]['code']}]") .
|
(empty($data[$method]['code']) ? '' : "{$data[$method]['msg']} [{$data[$method]['code']}]\r\n") .
|
||||||
(empty($data[$method]['sub_code']) ? '' : "\n{$data[$method]['sub_msg']}[{$data[$method]['sub_code']}]\n"),
|
(empty($data[$method]['sub_code']) ? '' : "{$data[$method]['sub_msg']} [{$data[$method]['sub_code']}]\r\n"),
|
||||||
$data[$method]['code'],
|
$data[$method]['code'], $data
|
||||||
$data
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return $this->verify($data[$method], $data['sign'], true);
|
return $this->verify($data[$method], $data['sign'], true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user