文件名称:PHP的WebSockets开发包PHPRatchet.zip
文件大小:68KB
文件格式:ZIP
更新时间:2022-08-07 07:00:46
开源项目
Ratchet 是一个松耦合的 PHP 库,提供了用于创建实时、双向客户端服务器 WebSockets 应用的支持。示例代码:<?php namespace MyApp; use Ratchet\MessageComponentInterface; use Ratchet\ConnectionInterface; class Chat implements MessageComponentInterface { public function onOpen(ConnectionInterface $conn) { } public function onMessage(ConnectionInterface $from, $msg) { } public function onClose(ConnectionInterface $conn) { } public function onError(ConnectionInterface $conn, \Exception $e) { } } 标签:PHPRatchet
【文件预览】:
Ratchet-master
----composer.json(1020B)
----.travis.yml(302B)
----tests()
--------bootstrap.php(131B)
--------unit()
--------autobahn()
--------helpers()
----LICENSE(1KB)
----src()
--------Ratchet()
----.gitignore(52B)
----CHANGELOG.md(5KB)
----Makefile(1KB)
----phpunit.xml.dist(703B)
----README.md(3KB)