您好这是我第一次使用套接字。我有多个客户端通过特定端口连接到我的套接字服务器。我想向特定客户发送特定消息。我怎样才能做到这一点?。
我正在使用此library
https://github.com/navarr/Sockets
这是代码
<?php
use Navarr\Socket\Socket;
use Navarr\Socket\Server;
class EchoServer extends Server
{
const DEFAULT_PORT = 7;
public function __construct($ip = null, $port = self::DEFAULT_PORT)
{
parent::__construct($ip, $port);
$this->addHook(Server::HOOK_CONNECT, array($this, 'onConnect'));
$this->addHook(Server::HOOK_INPUT, array($this, 'onInput'));
$this->addHook(Server::HOOK_DISCONNECT, array($this, 'onDisconnect'));
$this->run();
}
public function onConnect(Server $server, Socket $client, $message)
{
echo 'Connection Established',"\n";
}
public function onInput(Server $server, Socket $client, $message)
{
echo 'Received "',$message,'"',"\n";
$client->write($message, strlen($message));
}
public function onDisconnect(Server $server, Socket $client, $message)
{
echo 'Disconnection',"\n";
}
}
$server = new EchoServer('0.0.0.0');
如果只连接了一个客户端,此行$client->write($message, strlen($message));
将向客户端发送消息。但如果连接了多个客户端,那么我该如何向特定客户端发送消息?
答案 0 :(得分:0)
在onConnect函数中添加此代码。
//declare this as global inside EchoServer class so that you can access this outside onConnect function
$connected_clients["userID"] = $client; //use unique id for key
然后发送消息,使用userID
访问正确的客户端:
$connected_clients["userID"]->write($message, strlen($message));
要获得userID
,一旦客户端连接到客户端ID的服务器请求,例如:使用JSON进行简单通信,发送此JSON消息
{"messageType":"request", "requestType": "identification"}
给客户。在客户端处理消息并发送此JSON消息
{"messageType":"response",
"body":{"userID":"123456", "accessToken":"ye5473rgfygf737trfeyg3rt764e"}}
回到服务器。在服务器端验证访问令牌并从响应中检索userID
。 userID
是数据库中唯一的标识号存储,在注册到您的聊天网站时分配给每个用户。
要了解发送消息的客户端,请使用此JSON消息格式
{"messageType":"message",
"from":"userID",
"body":"message here"}
根据您的喜好进行修改。