diff --git a/_test/pay-v3-order-create.php b/_test/pay-v3-order-app.php similarity index 81% rename from _test/pay-v3-order-create.php rename to _test/pay-v3-order-app.php index 5448b6a..90e5290 100644 --- a/_test/pay-v3-order-create.php +++ b/_test/pay-v3-order-app.php @@ -10,13 +10,12 @@ try { $payment = \WePayV3\Order::instance($config); // 4. 组装支付参数 - $result = $payment->create('jsapi', [ - 'appid' => 'wx60a43dd8161666d4', + $result = $payment->create('app', [ + 'appid' => $config['appid'], 'mchid' => $config['mch_id'], 'description' => '商品描述', 'out_trade_no' => (string)time(), 'notify_url' => 'https://thinkadmin.top', - 'payer' => ['openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY'], 'amount' => ['total' => 2, 'currency' => 'CNY'], ]); diff --git a/_test/pay-v3-order-h5.php b/_test/pay-v3-order-h5.php new file mode 100644 index 0000000..0badc70 --- /dev/null +++ b/_test/pay-v3-order-h5.php @@ -0,0 +1,35 @@ +create('h5', [ + 'appid' => $config['appid'], + 'mchid' => $config['mch_id'], + 'description' => '商品描述', + 'out_trade_no' => (string)time(), + 'notify_url' => 'https://thinkadmin.top', + 'amount' => ['total' => 2, 'currency' => 'CNY'], + 'scene_info' => [ + 'h5_info' => [ + 'type' => 'Wap', + ], + 'payer_client_ip' => '14.23.150.211', + ], + ]); + + echo '
'; + echo "\n--- 创建支付参数 ---\n"; + var_export($result); + +} catch (\Exception $exception) { + // 出错啦,处理下吧 + echo $exception->getMessage() . PHP_EOL; +} \ No newline at end of file diff --git a/_test/pay-v3-order-jsapi.php b/_test/pay-v3-order-jsapi.php new file mode 100644 index 0000000..b2ec644 --- /dev/null +++ b/_test/pay-v3-order-jsapi.php @@ -0,0 +1,39 @@ +create('jsapi', [ + 'appid' => $config['appid'], + 'mchid' => $config['mch_id'], + 'description' => '商品描述', + 'out_trade_no' => (string)time(), + 'notify_url' => 'https://thinkadmin.top', + 'payer' => ['openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY'], + 'amount' => ['total' => 2, 'currency' => 'CNY'], + ]); + + echo ''; + echo "\n--- 创建支付参数 ---\n"; + var_export($result); + +// array( +// 'appId' => 'wx60a43dd8161666d4', +// 'timeStamp' => '1669027650', +// 'nonceStr' => 'dfscg4lm02uqy448kjd1kjs2eo26joom', +// 'package' => 'prepay_id=wx211847302881094d83b1917194ca880000', +// 'signType' => 'RSA', +// 'paySign' => '1wvvi4vmcJmP3GXB0H52mxp8lOhyqE4BtLmyi3Flg8DVKCES4fsb6+0z/L9sYkbp/TNinsnK0k7mUpTe2Yo86P1DLg18fR7zsIn5u1+3tI58boHk3VsAJl4Uhlti9ME3T7kRq1bEb4DGxp16+ixRynOqndkIkYXxrREhsrZIQlsGMfNCV0K1707s7jBTgqIm1vlkpIjNEg8nbcuG88Vzly4dR1a9K6Fux+sm0gu2rMroRwIo2R/0rgHGDANmnAZj6YEfLZlRrGTbr9r0V1+HHQPvV4BJLvTG8KXVJmJSJzBWSgq31PwrLWdOwdtpNKk7wJbY7yoScYUysYqqzM4DTQ==', +// ); + +} catch (\Exception $exception) { + // 出错啦,处理下吧 + echo $exception->getMessage() . PHP_EOL; +} \ No newline at end of file diff --git a/_test/pay-v3-order-native.php b/_test/pay-v3-order-native.php new file mode 100644 index 0000000..bb4d7c5 --- /dev/null +++ b/_test/pay-v3-order-native.php @@ -0,0 +1,31 @@ +create('native', [ + 'appid' => $config['appid'], + 'mchid' => $config['mch_id'], + 'description' => '商品描述', + 'out_trade_no' => (string)time(), + 'notify_url' => 'https://thinkadmin.top', + 'amount' => ['total' => 2, 'currency' => 'CNY'], + ]); + + echo ''; + echo "\n--- 创建支付参数 ---\n"; + var_export($result); + + // array('code_url' => 'weixin://wxpay/bizpayurl?pr=cdJXOVDzz'); + +} catch (\Exception $exception) { + // 出错啦,处理下吧 + echo $exception->getMessage() . PHP_EOL; +} \ No newline at end of file diff --git a/_test/wechat-jssdk-sign.php b/_test/wechat-jssdk-sign.php index 054734e..a84310b 100644 --- a/_test/wechat-jssdk-sign.php +++ b/_test/wechat-jssdk-sign.php @@ -26,7 +26,7 @@ try { $wechat = \WeChat\Script::instance($config); // 4. 获取JSSDK网址签名配置 - $result = $wechat->getJsSign('http://a.com/test.php'); + $result = $wechat->getJsSign('https://a.com/test.php'); var_export($result);