From 63458d810ff14ed8889ad1f84b745225ee42c187 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 12 Dec 2018 17:59:07 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=AD=A3=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1App=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Pay.php | 2 +- WePay/Order.php | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/WeChat/Pay.php b/WeChat/Pay.php index 062afdb..9045c00 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -76,7 +76,7 @@ class Pay extends BasicWePay $pay = new Order($this->config->get()); return $pay->qrcParams($product_id); } - + /** * 查询订单 * @param array $options diff --git a/WePay/Order.php b/WePay/Order.php index d20a318..2b4a1f5 100644 --- a/WePay/Order.php +++ b/WePay/Order.php @@ -108,12 +108,12 @@ class Order extends BasicWePay public function appParams($prepayId) { $data = [ - 'appid' => $this->config->get('appid'), - 'partnerid' => $this->config->get('mch_id'), - 'prepayid' => (string)$prepayId, - 'package' => 'Sign=WXPay', - 'time_stamp' => (string)time(), - 'nonce_str' => Tools::createNoncestr(), + 'appid' => $this->config->get('appid'), + 'partnerid' => $this->config->get('mch_id'), + 'prepayid' => (string)$prepayId, + 'package' => 'Sign=WXPay', + 'timestamp' => (string)time(), + 'noncestr' => Tools::createNoncestr(), ]; $data['sign'] = $this->getPaySign($data, 'MD5'); return $data;