mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
commit
db9373b4d3
@ -122,7 +122,10 @@ class BasicWePay
|
|||||||
{
|
{
|
||||||
ksort($data);
|
ksort($data);
|
||||||
if (isset($data['sign'])) unset($data['sign']);
|
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'));
|
$buff .= ("key=" . $this->config->get('mch_key'));
|
||||||
if (strtoupper($signType) === 'MD5') {
|
if (strtoupper($signType) === 'MD5') {
|
||||||
return strtoupper(md5($buff));
|
return strtoupper(md5($buff));
|
||||||
@ -201,4 +204,4 @@ class BasicWePay
|
|||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user