Merge branch 'dev' of bvbej/base-php into master

This commit is contained in:
bvbej 2022-01-11 14:15:36 +08:00 committed by Gogs
commit c2da4f1c5c

View File

@ -110,7 +110,11 @@ class BvBeJHandle
't' => $timestamp 't' => $timestamp
]); ]);
ksort($form); ksort($form);
$sign = http_build_query($form); $singArr = [];
foreach ($form as $k => $v) {
$singArr[urlencode($k)] = urlencode($v);
}
$sign = http_build_query($singArr);
try { try {
$signature = $this->AesEncrypt($sign, $key, $vi); $signature = $this->AesEncrypt($sign, $key, $vi);
if ($signature === false) { if ($signature === false) {