mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +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
|
||||
*/
|
||||
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') {
|
||||
throw new InvalidResponseException('获取退款通知XML失败!');
|
||||
}
|
||||
if (!class_exists('Prpcrypt', false)) {
|
||||
include dirname(__DIR__) . '/WeChat/Contracts/Prpcrypt.php';
|
||||
}
|
||||
$pc = new \Prpcrypt(md5($this->config->get('mch_key')));
|
||||
$array = $pc->decrypt(base64_decode($data['req_info']));
|
||||
if (intval($array[0]) > 0) {
|
||||
throw new InvalidResponseException($array[1], $array[0]);
|
||||
}
|
||||
$data['decode'] = $array[1];
|
||||
$key = md5($this->config->get('mch_key'));
|
||||
$decrypt = base64_decode($data['req_info']);
|
||||
$response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA);
|
||||
$data['result'] = Tools::xml2arr($response);
|
||||
return $data;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user