swoole-1.7.16版本增加了客户端连接迭代器接口,可以非常轻松实现遍历当前服务器的所有连接。
foreach($server->connections as $fd) { $server->send($fd, "hello world\n"); }
echo count($server->connections);