mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
commit
db9373b4d3
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user