mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 01:42:45 +08:00
50 lines
1.8 KiB
PHP
50 lines
1.8 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/WeChatDeveloper
|
||
// | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
|
||
try {
|
||
// 1. 手动加载入口文件
|
||
include "../include.php";
|
||
|
||
// 2. 准备公众号配置参数
|
||
$config = include "./pay-v3-config.php";
|
||
|
||
// 3. 创建接口实例
|
||
$payment = \WePayV3\Order::instance($config);
|
||
|
||
// 4. 组装支付参数
|
||
$result = $payment->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 '<pre>';
|
||
echo "\n--- 创建支付参数 ---\n";
|
||
var_export($result);
|
||
|
||
} catch (\Exception $exception) {
|
||
// 出错啦,处理下吧
|
||
echo $exception->getMessage() . PHP_EOL;
|
||
} |