shawn805/wechat-robot

qiye-wechat notify
765 12
Install
composer require shawn805/wechat-robot
Latest Version:1.0.5
PHP:>=5.6
License:MIT
Last Updated:Oct 13, 2020
Links: GitHub  ·  Packagist
Maintainer: shawn805

安装

$ composer require shawn805/wechat-robot

使用方法

实例 
/**
  * @param string $token    必填参数
  * @param array $mobile    可选,需要@的手机号码
  * @param bool $atAll  可选,是否需要@所有人  
*/
$weChat = new WeChatRobot(string $token, array $mobile = [], bool $atAll = true);

发送文本类型
/**
  * @param string $content     消息内容
*/
$weChat->text(string $content);

markdown类型
/**
  * @param string $markdown     markdown内容
*/
$weChat->markdown(string $markdown);

发送文件
/**
  * @param string $path     文件路径
*/
$weChat->file(string $path);

图文类型
/**
  * @param array $articles     图文信息数组
*/
$articles = [
    "title" : "标题",
    "description" : "标题",
    "url" : "点击后跳转的链接",
    "picurl" : "图文消息的图片链接"  
];
$weChat->imageText(array $articles);

License

MIT

Related Packages

seffeng/laravel-wechat

PHP laravel extension wechat

680 0
haoong/wxpay

wxpay for laravel

17 0
jlcd/api-cielo30-laravel

Laravel Provider for Cielo's 3.0 API

224,633 17
nilportugues/laravel5-json-api-dingo

Laravel5 JSONAPI and Dingo together to build APIs fast

1,498 30