所以我特意在php中使用了新的Web套接字,所以我尝试了这个名为socketo.me的帮助库。 每件事都很好,套接字连接获取消息,将消息填充到所有客户端,但只有问题是它会在我不知道的某个时间后超时。有一天我把socket连接起来,第二天早上我来尝试连接并且没有连接,我必须重新启动socket(服务器继续运行)。 这是我用来运行socket的代码。
public static function actioninitialize(){
$server = IoServer::factory(
new Chat(),
28
);
$server->run();
}
28是即时使用的端口,而Chat()是用于接收和填充消息的消息接口
class Chat implements MessageComponentInterface {
protected $clients;
public function __construct() {
$this->clients = new \SplObjectStorage;
}
public function onOpen(ConnectionInterface $conn) {
// Store the new connection to send messages to later
$this->clients->attach($conn);
echo "New connection! ({$conn->resourceId})\n";
}
public function onMessage(ConnectionInterface $from, $msg) {
foreach ($this->clients as $client) {
$client->send('eg' );
}
}
public function onClose(ConnectionInterface $conn) {
// The connection is closed, remove it, as we can no longer send it messages
$this->clients->detach($conn);
echo "Connection {$conn->resourceId} has disconnected\n";
}
public function onError(ConnectionInterface $conn, \Exception $e) {
echo "An error has occurred: {$e->getMessage()}\n";
$conn->close();
}
}
所以,iv看到他们的文档,但几乎无法找到这个超时事件的来源。我已经看过php文档了,看到了一些东西,尝试但没有任何帮助。 任何帮助将不胜感激。 感谢。