1 Star 0 Fork 0

遇见美好/chat-websocket

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
handle.php 448 Bytes
一键复制 编辑 原始数据 按行查看 历史
遇见美好 提交于 2021-04-20 18:30 . code submit
<?php
require_once 'vendor/autoload.php';
use Chat\WebSocket;
class Chat extends WebSocket
{
/**
* 组合websocket方法
* @param string $host
* @param int $port
*/
public static function run(string $host = '0.0.0.0',$port = 9501)
{
$socket = new WebSocket($host, $port);
$socket->open();
$socket->message();
$socket->close();
$socket->start();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/meet-you/chat-websocket.git
git@gitee.com:meet-you/chat-websocket.git
meet-you
chat-websocket
chat-websocket
master

搜索帮助