xupp / wechat
this is a wechat sdk
Installs: 99
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2025-04-06 10:28:47 UTC
README
微信SDK
/======================使用方法===========================/
require "./vendor/autoload.php";
use wechat\Wx;
$config = [
'token' => 'weixin',
'appId' => 'wx917fc314c6f429ff',
'appSecret' => 'e7d5c0c720bb9cbd7248bf602b3f17b3'
];
$wx = new Wx($config);
$wx->valid();
$message = $wx->instance('message');
if($message->isTextMsg()){
$message->text('我的微信sdk发布了');
}