• Stars
    star
    261
  • Rank 156,630 (Top 4 %)
  • Language
    CSS
  • License
    MIT License
  • Created about 8 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

使用swoole扩展和php开发的一个在线聊天室(Making a Web Chat With PHP and Swoole)

在线聊天室(Making a Web Chat With PHP and Swoole)


@author: 翎羽鹭 (https://www.ido.icu)

@email: [email protected]

使用swoole扩展和php开发的一个在线聊天室,目前实现的功能有

  • 支持群聊
  • 支持发送文字
  • 支持发送图片
  • 支持@人
  • 支持分房间聊天功能
  • 显示消息数

在线聊天DEMO:

== 服务器到期,预览不了了。请部署到本地自行预览,谢谢!==

如何运行?

1.先将client目录放置在您的web服务器下,打开client/static/js/init.js 文件,将该文件的配置修改成自己的域名或者IP

2.打开server目录,首先将rooms目录以及其子目录权限设为777,确保该目录可写。将client/uploads目录设置为777可写。

3.修改server/config.inc.php 文件。将下面一行代码修改为您的域名或者IP。

define("DOMAIN","http://192.168.56.133:8081");

并且将下面这样修改为rooms目录所在的路径

define('ONLINE_DIR','/mnt/hgfs/swoole/chatroom/rooms/');

4.命令行执行 :

/usr/local/php/bin/php /path/server/hsw_server.php

资料说明

swoole官网 http://www.swoole.com

程序聊天界面采用 钉钉 http://dingtalk.com

前端使用插件: 上传图片插件:xlyjs 一个封装好的跨域上传js控件(https://github.com/hellosee/xlyjs

本程序使用的是文件存储。没有测试抗压能力,并且可能存在BUG,切勿用做商业用途。只提供一起学习和讨论。 如果您有问题,欢迎联系 共同学习