PHP网络套接字在一段时间后会超时

时间:2016-10-31 07:55:54

标签: php sockets ratchet

所以我特意在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文档了,看到了一些东西,尝试但没有任何帮助。 任何帮助将不胜感激。 感谢。

1 个答案:

答案 0 :(得分:1)

  1. WebSocket协议有一个名为ping-pong的keepalive机制。您可以尝试在应用中使用enable it。或者,您可以使用消息实现相同的功能。目标是向全世界展示您正在使用TCP连接。

  2. 由于意外关闭浏览器标签到您的操作系统不喜欢在您的ISP上遇到NAT服务器崩溃的长连接,因此连接会因为很多原因而中断。通常,应用程序应该能够检测到失败的连接,删除它并创建新的连接而不会对用户体验产生任何影响(如果我们谈论聊天,重新连接消息会很好)。 / p>