tianshupei/think-wechat

thinkphp 微信SDK

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Type:think-extend

dev-master 2019-04-11 10:09 UTC

This package is not auto-updated.

Last update: 2024-05-21 04:07:28 UTC


README

介绍

EasyWeChat的thinkphp5封装

安装教程

composer require tianshupei/think-wechat

使用说明

配置文件config\tsp-wechat.php

use Tsp\WeChat\Factory;
use Tsp\WeChat\Wechat;

// 方法一
$wechat = new Factory();

$wechat->officialAccount;   // 微信公众号
$wechat->payment;           // 微信支付
$wechat->miniProgram;       // 小程序
$wechat->openPlatform;      // 开放平台
$wechat->work;              // 企业微信
$wechat->openWork;          // 企业微信开放平台

// 方法二
Wechat::officialAccount();  // 微信公众号
Wechat::payment();          // 微信支付
Wechat::miniProgram();      // 小程序
Wechat::openPlatform();     // 开放平台
Wechat::work();             // 企业微信
Wechat::openWork();         // 企业微信开放平台

详细使用请阅读EasyWechat文档