vbot
vbot copied to clipboard
群里拉好友进入,或者好友扫码进入 ,如何得到最新的群成员数量?
$vbot->messageHandler->setHandler(function (Collection $message) { file_put_contents("./c.log", print_r($message, true) . PHP_EOL, FILE_APPEND); if ($message['type'] === 'group_change') { // file_put_contents("./c.log", print_r($message, true) . PHP_EOL, FILE_APPEND); } });
这样好像并没有触发。。。
以及群里有人退出的话 ,是否有监听通知?
if($message['type'] == 'group_change' && $message['from_type'] == 'Group') { //todo }
if($message['type'] == 'group_change' && $message['from_type'] == 'Group') { //todo }
好像没有触发这个事件