-
Notifications
You must be signed in to change notification settings - Fork 711
新增好友NewFriend
HanSon edited this page Mar 16, 2017
·
1 revision
属性 | 类型 | 含义 |
---|---|---|
msg | array | 消息的原始数组 |
$robot->server->setMessageHandler(function ($message){
// 新增好友
if($message instanceof NewFriend){
Console::log('新加好友:' . $message->from['NickName']);
}
});