xooooooox/wechat

There is no license information available for the latest version (1.0.12) of this package.

php wechat pay v3

1.0.12 2021-06-28 05:01 UTC

This package is auto-updated.

Last update: 2024-05-12 03:33:14 UTC


README

composer require xooooooox/wechat

For example

<?php

use xooooooox\wechat\pay\Native;

// Native支付下单
$result = Native::Place(
    '商户号',
    '商户私钥内容',
    '商户证书序列号',
    '应用ID',
    '平台订单号',
    '订单描述',
    '回调通知地址',
    '支付总金额, 单位:分',
    '订单附加信息',
    'CNY'
);
var_dump($result);