jamesctl / ratchet

PHP WebSocket库

v1.06 2024-09-30 16:13 UTC

This package is auto-updated.

Last update: 2024-09-30 18:10:29 UTC


README

GitHub Actions Autobahn Testsuite Latest Stable Version

此包是从https://github.com/ratchetphp/Ratchet分叉的

修复laravel 11.x

Ratchet是一个用于异步服务WebSocket的PHP库。通过简单的接口构建您的应用程序,通过组合不同的组件重用您的应用程序,而无需更改其任何代码。

复兴Ratchet!

我们目前正在努力复兴Ratchet,使其与最新版本保持同步,并以此为起点进行更大的更新。为了实现这一目标,我们需要您的帮助,请参见问题#1054了解如何提供帮助。❤️

要求

需要shell访问权限,建议root访问权限。为了避免代理/防火墙阻塞,建议通过端口80或443(SSL)请求WebSocket,这需要root访问权限。为了做到这一点,除了您的同步Web堆栈之外,您可以使用反向代理或两台单独的机器。您可以在服务器配置文档中找到更多详细信息。

文档

用户和API文档可在Ratchet网站上找到:http://socketo.me

有关使用Ratchet的一些开箱即用工作演示,请参阅https://github.com/cboden/Ratchet-examples

需要帮助?有问题?想提供反馈?请在Google Groups邮件列表上发消息。

快速示例

<?php
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;

    // Make sure composer dependencies have been installed
    require __DIR__ . '/vendor/autoload.php';

/**
 * chat.php
 * Send any incoming messages to all connected clients (except sender)
 */
class MyChat implements MessageComponentInterface {
    protected $clients;

    public function __construct() {
        $this->clients = new \SplObjectStorage;
    }

    public function onOpen(ConnectionInterface $conn) {
        $this->clients->attach($conn);
    }

    public function onMessage(ConnectionInterface $from, $msg) {
        foreach ($this->clients as $client) {
            if ($from != $client) {
                $client->send($msg);
            }
        }
    }

    public function onClose(ConnectionInterface $conn) {
        $this->clients->detach($conn);
    }

    public function onError(ConnectionInterface $conn, \Exception $e) {
        $conn->close();
    }
}

    // Run the server application through the WebSocket protocol on port 8080
    $app = new Ratchet\App('localhost', 8080);
    $app->route('/chat', new MyChat, array('*'));
    $app->route('/echo', new Ratchet\Server\EchoServer, array('*'));
    $app->run();
$ php chat.php
    // Then some JavaScript in the browser:
    var conn = new WebSocket('ws://:8080/echo');
    conn.onmessage = function(e) { console.log(e.data); };
    conn.onopen = function(e) { conn.send('Hello Me!'); };