gos / ratchet
该包已被弃用且不再维护。没有建议的替代包。
PHP WebSocket 库
v0.3.6
2017-12-12 16:15 UTC
Requires
- php: >=5.3.9
- guzzle/http: ^3.6
- react/socket: ^0.3 || ^0.4
- symfony/http-foundation: ^2.2|^3.0|^4.0
- symfony/routing: ^2.2|^3.0|^4.0
This package is not auto-updated.
Last update: 2020-01-24 15:50:47 UTC
README
#Ratchet for Gos
一个用于异步服务 WebSockets 的 PHP 5.3 库。通过简单的接口构建您的应用程序,并通过组合不同的组件重用您的应用程序,无需更改任何代码。
##WebSocket 兼容性
- 支持 RFC6455、HyBi-10+ 和 Hixie76 协议版本(同时)
- 在 Chrome 13+、Firefox 6+、Safari 5+、iOS 4.2+、IE 8+ 上进行了测试
- Ratchet 通过了 Autobahn 测试套件(非二进制消息)
##要求
需要 Shell 访问,建议 root 访问。为了避免代理/防火墙阻塞,建议在端口 80 或 443(SSL)上请求 WebSockets,这需要 root 访问。为此,除了您的同步 Web 堆栈外,您可以使用反向代理或两台独立的机器。更多详细信息请参阅 服务器配置文档。
需要 PHP 5.3.9(或更高版本)。如果您有访问权限,PHP 5.4(或更高版本)因其性能改进而强烈推荐。
文档
用户和 API 文档可在 Ratchet 网站上找到: http://socketo.me
请参阅 https://github.com/cboden/Ratchet-examples 以获取一些使用 Ratchet 的工作示例。
需要帮助?有问题?想提供反馈?请在 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); $app->route('/echo', new Ratchet\Server\EchoServer, array('*')); $app->run();
$ php chat.php
// Then some JavaScript in the browser: var conn = new WebSocket('ws://localhost:8080/echo'); conn.onmessage = function(e) { console.log(e.data); }; conn.send('Hello Me!');