itcats / ding-ding-robot
钉钉机器人,通知,报警,机器人,webhook
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/itcats/ding-ding-robot
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-09-26 21:02:38 UTC
README
钉钉机器人webhook
使用方法:
include_once 'vendor/autoload.php'; /** * 必填 * 钉钉机器人的webhook地址 */ $web_hook = ''; /** * 选填 * 需要被通知人的手机号(可在钉钉上查看) */ $at_mobiles = array(); /** * 选填 * 是否全部被@,默认为true */ $is_at_all = true; $robot = new Itcats\DingtalkSDK\Dingtalk($web_hook); $txt = 'hello itcats!'; $robot->sendTextMsg($txt);