mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
commit
946a4c40ab
@ -60,10 +60,10 @@ class Order extends BasicWePay
|
|||||||
$prepayId = $result['prepay_id'];
|
$prepayId = $result['prepay_id'];
|
||||||
$nonceStr = Tools::createNoncestr();
|
$nonceStr = Tools::createNoncestr();
|
||||||
if ($type === 'app') {
|
if ($type === 'app') {
|
||||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId]));
|
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId])."\n");
|
||||||
return ['partnerId' => $this->config['mch_id'], 'prepayId' => $prepayId, 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign];
|
return ['partnerId' => $this->config['mch_id'], 'prepayId' => $prepayId, 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign];
|
||||||
} elseif ($type === 'jsapi') {
|
} elseif ($type === 'jsapi') {
|
||||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}"]));
|
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}"])."\n");
|
||||||
return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$prepayId}", 'signType' => 'RSA', 'paySign' => $sign];
|
return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$prepayId}", 'signType' => 'RSA', 'paySign' => $sign];
|
||||||
} else {
|
} else {
|
||||||
return $result;
|
return $result;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"name": "zoujingli/wechat-developer",
|
"name": "zoujingli/wechat-developer-kentwangit",
|
||||||
"homepage": "https://github.com/zoujingli/WeChatDeveloper",
|
"homepage": "https://github.com/kentwangit/WeChatDeveloper",
|
||||||
"description": "WeChat platform and WeChat payment development tools",
|
"description": "WeChat platform and WeChat payment development tools",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user