From 8a2030216b066b78b7b89505f2ee33fe679d54dc Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 2 May 2018 10:22:46 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1=E6=94=AF=E4=BB=98=E8=A7=84=E5=88=99=E4=BA=8C=E7=BB=B4?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Pay.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/WeChat/Pay.php b/WeChat/Pay.php index 3e65f7b..efb3203 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -97,6 +97,24 @@ class Pay return $option; } + /** + * 获取支付规则二维码 + * @param string $product_id 商户定义的商品id 或者订单号 + * @return string + */ + public function createParamsForRuleQrc($product_id) + { + $data = [ + 'appid' => $this->config->get('appid'), + 'mch_id' => $this->config->get('mch_id'), + 'time_stamp' => (string)time(), + 'nonce_str' => Tools::createNoncestr(), + 'product_id' => (string)$product_id, + ]; + $data['sign'] = $this->getPaySign($data, 'MD5'); + return "weixin://wxpay/bizpayurl?" . http_build_query($data); + } + /** * 查询订单 * @param array $options