Skip to content

新增好友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']);
    }
});
Clone this wiki locally