如果参数的值为空不参与签名

This commit is contained in:
蒋文健 2022-08-27 18:43:24 +08:00 committed by GitHub
parent e061f4e374
commit c95d20fb4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,10 @@ class BasicWePay
{
ksort($data);
if (isset($data['sign'])) unset($data['sign']);
foreach ($data as $k => $v) $buff .= "{$k}={$v}&";
foreach ($data as $k => $v) {
if ('' === $v || null === $v) continue;
$buff .= "{$k}={$v}&";
}
$buff .= ("key=" . $this->config->get('mch_key'));
if (strtoupper($signType) === 'MD5') {
return strtoupper(md5($buff));
@ -201,4 +204,4 @@ class BasicWePay
}
return $result;
}
}
}