mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
修改退款通知及版本号
This commit is contained in:
parent
c7bc47a451
commit
d5dfc08aee
2
We.php
2
We.php
@ -87,7 +87,7 @@ class We
|
|||||||
* 定义当前版本
|
* 定义当前版本
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.26';
|
const VERSION = '1.2.27';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 静态配置
|
* 静态配置
|
||||||
|
@ -63,15 +63,10 @@ class Refund extends BasicWePay
|
|||||||
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
||||||
throw new InvalidResponseException('获取退款通知XML失败!');
|
throw new InvalidResponseException('获取退款通知XML失败!');
|
||||||
}
|
}
|
||||||
if (!class_exists('Prpcrypt', false)) {
|
$key = md5($this->config->get('mch_key'));
|
||||||
include dirname(__DIR__) . '/WeChat/Contracts/Prpcrypt.php';
|
$decrypt = base64_decode($data['req_info']);
|
||||||
}
|
$response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA);
|
||||||
$pc = new \Prpcrypt(md5($this->config->get('mch_key')));
|
$data['result'] = Tools::xml2arr($response);
|
||||||
$array = $pc->decrypt(base64_decode($data['req_info']));
|
|
||||||
if (intval($array[0]) > 0) {
|
|
||||||
throw new InvalidResponseException($array[1], $array[0]);
|
|
||||||
}
|
|
||||||
$data['decode'] = $array[1];
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user