Merge pull request #62 from kentwangit/patch-1

Update Order.php
This commit is contained in:
邹景立 2021-05-19 14:15:06 +08:00 committed by GitHub
commit 946a4c40ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -60,10 +60,10 @@ class Order extends BasicWePay
$prepayId = $result['prepay_id'];
$nonceStr = Tools::createNoncestr();
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];
} 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];
} else {
return $result;
@ -103,4 +103,4 @@ class Order extends BasicWePay
return $data;
}
}
}

View File

@ -1,7 +1,7 @@
{
"type": "library",
"name": "zoujingli/wechat-developer",
"homepage": "https://github.com/zoujingli/WeChatDeveloper",
"name": "zoujingli/wechat-developer-kentwangit",
"homepage": "https://github.com/kentwangit/WeChatDeveloper",
"description": "WeChat platform and WeChat payment development tools",
"license": "MIT",
"authors": [
@ -42,4 +42,4 @@
"WePayV3\\": "WePayV3"
}
}
}
}