Home >Backend Development >PHP Tutorial >Client WebSocket error! failed: Invalid frame header

Client WebSocket error! failed: Invalid frame header

WBOY
WBOYOriginal
2016-08-20 08:48:315938browse

Client WebSocket error! failed: Invalid frame header

Server code (using swoole)

<code>$serv = new swoole_websocket_server("**********", 9502);

$serv->on('Open', function($server, $req) {
    echo "connection open: ".$req->fd;
});

$serv->on('Message', function($server, $frame) {
    echo "message: ".$frame->data;
    $server->push($frame->fd, json_encode(["hello", "world"]));
});

$serv->on('Close', function($server, $fd) {
    echo "connection close: ".$fd;
});

$serv->start();
</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:A sql query questionNext article:A sql query question