比如我要在workerman-chat中加入管理员的角色,想要主动踢出某个客户端,应该怎么做,谢谢
踢人的接口是Gateway::closeClient($client_id) http://doc3.workerman.net/gateway-worker-development/close-client.html
具体如何交互可以自己考虑下
注意chat前端js有断线重连逻辑,踢掉了可能会自动再连上来,需要处理下。
具体怎么弄,能详细说一下吗?谢谢!
都不愿意说清楚,index.php文件里,注释掉connect();这一行就OK了。 ws.onclose = function() { console.log("连接关闭,定时重连"); //connect(); };
踢人的接口是Gateway::closeClient($client_id)
http://doc3.workerman.net/gateway-worker-development/close-client.html
具体如何交互可以自己考虑下
注意chat前端js有断线重连逻辑,踢掉了可能会自动再连上来,需要处理下。
具体怎么弄,能详细说一下吗?谢谢!
都不愿意说清楚,index.php文件里,注释掉connect();这一行就OK了。
ws.onclose = function() {
console.log("连接关闭,定时重连");
//connect();
};