在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → PHP集成gatewayworkman在线聊天系统

PHP集成gatewayworkman在线聊天系统

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:2.58M
  • 下载次数:4
  • 浏览次数:21
  • 发布时间:2023-12-08
  • 实例类别:PHP语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 聊天系统 在线聊天 php GAT 聊天

实例介绍

【实例简介】PHP集成gatewayworkman在线聊天系统
用的ThinkPHP5集成gateway仿微信在线聊天系统,数据库文件已经放在里面,可以直接下载运行使用。功能虽未够完善,但聊天功能已经可用,剩下功能只是对数据库增删查改操作。

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── PHP集成gatewayworkman在线聊天系统_mychat.rar
└── mychat
    ├── LICENSE.txt
    ├── README.md
    ├── application
    │   ├── command.php
    │   ├── common.php
    │   ├── config.php
    │   ├── database.php
    │   ├── extra
    │   │   └── queue.php
    │   ├── index
    │   │   ├── common.php
    │   │   ├── config.php
    │   │   ├── controller
    │   │   │   ├── Chat.php
    │   │   │   ├── Common.php
    │   │   │   ├── Contacts.php
    │   │   │   ├── Index.php
    │   │   │   ├── Login.php
    │   │   │   ├── Me.php
    │   │   │   └── Register.php
    │   │   └── view
    │   │       ├── chat
    │   │       │   └── index.html
    │   │       ├── contacts
    │   │       │   ├── add_friends.html
    │   │       │   ├── index.html
    │   │       │   ├── person_info.html
    │   │       │   ├── person_send.html
    │   │       │   └── search.html
    │   │       ├── index
    │   │       │   ├── common.html
    │   │       │   ├── common_contacts.html
    │   │       │   ├── common_me.html
    │   │       │   └── index.html
    │   │       ├── login
    │   │       │   └── index.html
    │   │       ├── me
    │   │       │   └── index.html
    │   │       └── register
    │   │           └── register.html
    │   ├── route.php
    │   ├── socket
    │   │   ├── Events.php
    │   │   ├── start_businessworker.php
    │   │   ├── start_gateway.php
    │   │   └── start_register.php
    │   └── tags.php
    ├── build.php
    ├── composer.json
    ├── composer.lock
    ├── extend
    ├── minichat20180403002252.sql
    ├── public
    │   ├── favicon.ico
    │   ├── index.php
    │   ├── robots.txt
    │   ├── router.php
    │   └── static
    │       ├── css
    │       │   ├── add_friends.css
    │       │   ├── demos.css
    │       │   ├── headerFooter.css
    │       │   ├── jquery-weui.min.css
    │       │   ├── login.css
    │       │   ├── me.css
    │       │   ├── register.css
    │       │   ├── reset.css
    │       │   └── weui.min.css
    │       ├── images
    │       │   ├── add.png
    │       │   ├── add_friend.png
    │       │   ├── emoji.png
    │       │   ├── goBackIcon.png
    │       │   ├── go_back.png
    │       │   ├── group_chat.png
    │       │   ├── heard.png
    │       │   ├── information.png
    │       │   ├── move.png
    │       │   ├── nav
    │       │   │   ├── nav1.png
    │       │   │   ├── nav2.png
    │       │   │   ├── nav3.png
    │       │   │   ├── nav_full1.png
    │       │   │   ├── nav_full2.png
    │       │   │   └── nav_full3.png
    │       │   ├── search.png
    │       │   ├── search_friend.png
    │       │   ├── search_w.png
    │       │   ├── setting.png
    │       │   ├── sex_0.png
    │       │   ├── sex_1.png
    │       │   └── user_default_head.png
    │       └── js
    │           ├── jquery-1.11.0.js
    │           ├── jquery-weui.min.js
    │           ├── jquery.min.js
    │           └── popup.js
    ├── runtime
    │   ├── log
    │   │   └── 201804
    │   │       ├── 02.log
    │   │       └── 03.log
    │   └── temp
    │       ├── 330d4897dfbe39ac296a89218aaa6c4b.php
    │       ├── 9ba6c8c3413700e3de256e86b62ad10a.php
    │       ├── a434ff87430ac8df6b0c0139a70f1071.php
    │       ├── cb02e3f24ff0d9d870d1ec3fbb8c951c.php
    │       └── d99589e634777b1af927629499cd75ce.php
    ├── start_for_win.bat
    ├── think
    ├── thinkphp
    │   ├── CONTRIBUTING.md
    │   ├── LICENSE.txt
    │   ├── README.md
    │   ├── base.php
    │   ├── codecov.yml
    │   ├── composer.json
    │   ├── console.php
    │   ├── convention.php
    │   ├── helper.php
    │   ├── lang
    │   │   └── zh-cn.php
    │   ├── library
    │   │   ├── think
    │   │   │   ├── App.php
    │   │   │   ├── Build.php
    │   │   │   ├── Cache.php
    │   │   │   ├── Collection.php
    │   │   │   ├── Config.php
    │   │   │   ├── Console.php
    │   │   │   ├── Controller.php
    │   │   │   ├── Cookie.php
    │   │   │   ├── Db.php
    │   │   │   ├── Debug.php
    │   │   │   ├── Env.php
    │   │   │   ├── Error.php
    │   │   │   ├── Exception.php
    │   │   │   ├── File.php
    │   │   │   ├── Hook.php
    │   │   │   ├── Lang.php
    │   │   │   ├── Loader.php
    │   │   │   ├── Log.php
    │   │   │   ├── Model.php
    │   │   │   ├── Paginator.php
    │   │   │   ├── Process.php
    │   │   │   ├── Request.php
    │   │   │   ├── Response.php
    │   │   │   ├── Route.php
    │   │   │   ├── Session.php
    │   │   │   ├── Template.php
    │   │   │   ├── Url.php
    │   │   │   ├── Validate.php
    │   │   │   ├── View.php
    │   │   │   ├── cache
    │   │   │   │   ├── Driver.php
    │   │   │   │   └── driver
    │   │   │   │       ├── File.php
    │   │   │   │       ├── Lite.php
    │   │   │   │       ├── Memcache.php
    │   │   │   │       ├── Memcached.php
    │   │   │   │       ├── Redis.php
    │   │   │   │       ├── Sqlite.php
    │   │   │   │       ├── Wincache.php
    │   │   │   │       └── Xcache.php
    │   │   │   ├── config
    │   │   │   │   └── driver
    │   │   │   │       ├── Ini.php
    │   │   │   │       ├── Json.php
    │   │   │   │       └── Xml.php
    │   │   │   ├── console
    │   │   │   │   ├── Command.php
    │   │   │   │   ├── Input.php
    │   │   │   │   ├── LICENSE
    │   │   │   │   ├── Output.php
    │   │   │   │   ├── bin
    │   │   │   │   │   ├── README.md
    │   │   │   │   │   └── hiddeninput.exe
    │   │   │   │   ├── command
    │   │   │   │   │   ├── Build.php
    │   │   │   │   │   ├── Clear.php
    │   │   │   │   │   ├── Help.php
    │   │   │   │   │   ├── Lists.php
    │   │   │   │   │   ├── Make.php
    │   │   │   │   │   ├── make
    │   │   │   │   │   │   ├── Controller.php
    │   │   │   │   │   │   ├── Model.php
    │   │   │   │   │   │   └── stubs
    │   │   │   │   │   │       ├── controller.plain.stub
    │   │   │   │   │   │       ├── controller.stub
    │   │   │   │   │   │       └── model.stub
    │   │   │   │   │   └── optimize
    │   │   │   │   │       ├── Autoload.php
    │   │   │   │   │       ├── Config.php
    │   │   │   │   │       ├── Route.php
    │   │   │   │   │       └── Schema.php
    │   │   │   │   ├── input
    │   │   │   │   │   ├── Argument.php
    │   │   │   │   │   ├── Definition.php
    │   │   │   │   │   └── Option.php
    │   │   │   │   └── output
    │   │   │   │       ├── Ask.php
    │   │   │   │       ├── Descriptor.php
    │   │   │   │       ├── Formatter.php
    │   │   │   │       ├── Question.php
    │   │   │   │       ├── descriptor
    │   │   │   │       │   └── Console.php
    │   │   │   │       ├── driver
    │   │   │   │       │   ├── Buffer.php
    │   │   │   │       │   ├── Console.php
    │   │   │   │       │   └── Nothing.php
    │   │   │   │       ├── formatter
    │   │   │   │       │   ├── Stack.php
    │   │   │   │       │   └── Style.php
    │   │   │   │       └── question
    │   │   │   │           ├── Choice.php
    │   │   │   │           └── Confirmation.php
    │   │   │   ├── controller
    │   │   │   │   ├── Rest.php
    │   │   │   │   └── Yar.php
    │   │   │   ├── db
    │   │   │   │   ├── Builder.php
    │   │   │   │   ├── Connection.php
    │   │   │   │   ├── Query.php
    │   │   │   │   ├── builder
    │   │   │   │   │   ├── Mysql.php
    │   │   │   │   │   ├── Pgsql.php
    │   │   │   │   │   ├── Sqlite.php
    │   │   │   │   │   └── Sqlsrv.php
    │   │   │   │   ├── connector
    │   │   │   │   │   ├── Mysql.php
    │   │   │   │   │   ├── Pgsql.php
    │   │   │   │   │   ├── Sqlite.php
    │   │   │   │   │   ├── Sqlsrv.php
    │   │   │   │   │   └── pgsql.sql
    │   │   │   │   └── exception
    │   │   │   │       ├── BindParamException.php
    │   │   │   │       ├── DataNotFoundException.php
    │   │   │   │       └── ModelNotFoundException.php
    │   │   │   ├── debug
    │   │   │   │   ├── Console.php
    │   │   │   │   └── Html.php
    │   │   │   ├── exception
    │   │   │   │   ├── ClassNotFoundException.php
    │   │   │   │   ├── DbException.php
    │   │   │   │   ├── ErrorException.php
    │   │   │   │   ├── Handle.php
    │   │   │   │   ├── HttpException.php
    │   │   │   │   ├── HttpResponseException.php
    │   │   │   │   ├── PDOException.php
    │   │   │   │   ├── RouteNotFoundException.php
    │   │   │   │   ├── TemplateNotFoundException.php
    │   │   │   │   ├── ThrowableError.php
    │   │   │   │   └── ValidateException.php
    │   │   │   ├── log
    │   │   │   │   └── driver
    │   │   │   │       ├── File.php
    │   │   │   │       ├── Socket.php
    │   │   │   │       └── Test.php
    │   │   │   ├── model
    │   │   │   │   ├── Collection.php
    │   │   │   │   ├── Merge.php
    │   │   │   │   ├── Pivot.php
    │   │   │   │   ├── Relation.php
    │   │   │   │   └── relation
    │   │   │   │       ├── BelongsTo.php
    │   │   │   │       ├── BelongsToMany.php
    │   │   │   │       ├── HasMany.php
    │   │   │   │       ├── HasManyThrough.php
    │   │   │   │       ├── HasOne.php
    │   │   │   │       ├── MorphMany.php
    │   │   │   │       ├── MorphOne.php
    │   │   │   │       ├── MorphTo.php
    │   │   │   │       └── OneToOne.php
    │   │   │   ├── paginator
    │   │   │   │   └── driver
    │   │   │   │       └── Bootstrap.php
    │   │   │   ├── process
    │   │   │   │   ├── Builder.php
    │   │   │   │   ├── Utils.php
    │   │   │   │   ├── exception
    │   │   │   │   │   ├── Failed.php
    │   │   │   │   │   └── Timeout.php
    │   │   │   │   └── pipes
    │   │   │   │       ├── Pipes.php
    │   │   │   │       ├── Unix.php
    │   │   │   │       └── Windows.php
    │   │   │   ├── response
    │   │   │   │   ├── Json.php
    │   │   │   │   ├── Jsonp.php
    │   │   │   │   ├── Redirect.php
    │   │   │   │   ├── View.php
    │   │   │   │   └── Xml.php
    │   │   │   ├── session
    │   │   │   │   └── driver
    │   │   │   │       ├── Memcache.php
    │   │   │   │       ├── Memcached.php
    │   │   │   │       └── Redis.php
    │   │   │   ├── template
    │   │   │   │   ├── TagLib.php
    │   │   │   │   ├── driver
    │   │   │   │   │   └── File.php
    │   │   │   │   └── taglib
    │   │   │   │       └── Cx.php
    │   │   │   └── view
    │   │   │       └── driver
    │   │   │           ├── Php.php
    │   │   │           └── Think.php
    │   │   └── traits
    │   │       ├── controller
    │   │       │   └── Jump.php
    │   │       ├── model
    │   │       │   └── SoftDelete.php
    │   │       └── think
    │   │           └── Instance.php
    │   ├── logo.png
    │   ├── phpunit.xml
    │   ├── start.php
    │   └── tpl
    │       ├── default_index.tpl
    │       ├── dispatch_jump.tpl
    │       ├── page_trace.tpl
    │       └── think_exception.tpl
    └── vendor
        ├── autoload.php
        ├── bin
        ├── composer
        │   ├── ClassLoader.php
        │   ├── LICENSE
        │   ├── autoload_classmap.php
        │   ├── autoload_files.php
        │   ├── autoload_namespaces.php
        │   ├── autoload_psr4.php
        │   ├── autoload_real.php
        │   ├── autoload_static.php
        │   └── installed.json
        ├── topthink
        │   ├── think-captcha
        │   │   ├── LICENSE
        │   │   ├── README.md
        │   │   ├── assets
        │   │   │   ├── bgs
        │   │   │   │   ├── 1.jpg
        │   │   │   │   ├── 2.jpg
        │   │   │   │   ├── 3.jpg
        │   │   │   │   ├── 4.jpg
        │   │   │   │   ├── 5.jpg
        │   │   │   │   ├── 6.jpg
        │   │   │   │   ├── 7.jpg
        │   │   │   │   └── 8.jpg
        │   │   │   ├── ttfs
        │   │   │   │   ├── 1.ttf
        │   │   │   │   ├── 2.ttf
        │   │   │   │   ├── 3.ttf
        │   │   │   │   ├── 4.ttf
        │   │   │   │   ├── 5.ttf
        │   │   │   │   └── 6.ttf
        │   │   │   └── zhttfs
        │   │   │       └── 1.ttf
        │   │   ├── composer.json
        │   │   └── src
        │   │       ├── Captcha.php
        │   │       ├── CaptchaController.php
        │   │       └── helper.php
        │   ├── think-helper
        │   │   ├── LICENSE
        │   │   ├── README.md
        │   │   ├── composer.json
        │   │   └── src
        │   │       ├── Arr.php
        │   │       ├── Hash.php
        │   │       ├── Str.php
        │   │       ├── Time.php
        │   │       ├── hash
        │   │       │   ├── Bcrypt.php
        │   │       │   └── Md5.php
        │   │       └── helper.php
        │   ├── think-image
        │   │   ├── LICENSE
        │   │   ├── README.md
        │   │   ├── composer.json
        │   │   ├── phpunit.xml
        │   │   ├── src
        │   │   │   ├── Image.php
        │   │   │   └── image
        │   │   │       ├── Exception.php
        │   │   │       └── gif
        │   │   │           ├── Decoder.php
        │   │   │           ├── Encoder.php
        │   │   │           └── Gif.php
        │   │   └── tests
        │   │       ├── CropTest.php
        │   │       ├── FlipTest.php
        │   │       ├── InfoTest.php
        │   │       ├── RotateTest.php
        │   │       ├── TestCase.php
        │   │       ├── TextTest.php
        │   │       ├── ThumbTest.php
        │   │       ├── WaterTest.php
        │   │       ├── autoload.php
        │   │       ├── images
        │   │       │   ├── test.bmp
        │   │       │   ├── test.gif
        │   │       │   ├── test.jpg
        │   │       │   ├── test.png
        │   │       │   └── test.ttf
        │   │       └── tmp
        │   ├── think-installer
        │   │   ├── composer.json
        │   │   └── src
        │   │       ├── Plugin.php
        │   │       ├── ThinkExtend.php
        │   │       ├── ThinkFramework.php
        │   │       └── ThinkTesting.php
        │   ├── think-migration
        │   │   ├── LICENSE
        │   │   ├── README.md
        │   │   ├── composer.json
        │   │   ├── phinx
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── CONTRIBUTING.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   └── src
        │   │   │       └── Phinx
        │   │   │           ├── Db
        │   │   │           │   ├── Adapter
        │   │   │           │   │   ├── AdapterFactory.php
        │   │   │           │   │   ├── AdapterInterface.php
        │   │   │           │   │   ├── AdapterWrapper.php
        │   │   │           │   │   ├── MysqlAdapter.php
        │   │   │           │   │   ├── PdoAdapter.php
        │   │   │           │   │   ├── PostgresAdapter.php
        │   │   │           │   │   ├── ProxyAdapter.php
        │   │   │           │   │   ├── SQLiteAdapter.php
        │   │   │           │   │   ├── SqlServerAdapter.php
        │   │   │           │   │   ├── TablePrefixAdapter.php
        │   │   │           │   │   └── WrapperInterface.php
        │   │   │           │   ├── Table
        │   │   │           │   │   ├── Column.php
        │   │   │           │   │   ├── ForeignKey.php
        │   │   │           │   │   └── Index.php
        │   │   │           │   └── Table.php
        │   │   │           ├── Migration
        │   │   │           │   ├── AbstractMigration.php
        │   │   │           │   ├── AbstractTemplateCreation.php
        │   │   │           │   ├── CreationInterface.php
        │   │   │           │   ├── IrreversibleMigrationException.php
        │   │   │           │   ├── Migration.template.php.dist
        │   │   │           │   └── MigrationInterface.php
        │   │   │           ├── Seed
        │   │   │           │   ├── AbstractSeed.php
        │   │   │           │   ├── Seed.template.php.dist
        │   │   │           │   └── SeedInterface.php
        │   │   │           └── Util
        │   │   │               └── Util.php
        │   │   └── src
        │   │       ├── Command.php
        │   │       ├── Migrator.php
        │   │       ├── Seeder.php
        │   │       ├── command
        │   │       │   ├── Migrate.php
        │   │       │   ├── Seed.php
        │   │       │   ├── migrate
        │   │       │   │   ├── Breakpoint.php
        │   │       │   │   ├── Create.php
        │   │       │   │   ├── Rollback.php
        │   │       │   │   ├── Run.php
        │   │       │   │   └── Status.php
        │   │       │   ├── seed
        │   │       │   │   ├── Create.php
        │   │       │   │   └── Run.php
        │   │       │   └── stubs
        │   │       │       ├── migrate.stub
        │   │       │       └── seed.stub
        │   │       ├── config.php
        │   │       └── db
        │   │           ├── Column.php
        │   │           └── Table.php
        │   ├── think-mongo
        │   │   ├── LICENSE
        │   │   ├── README.md
        │   │   ├── composer.json
        │   │   └── src
        │   │       ├── Builder.php
        │   │       ├── Connection.php
        │   │       └── Query.php
        │   └── think-queue
        │       ├── LICENSE
        │       ├── README.md
        │       ├── composer.json
        │       └── src
        │           ├── Queue.php
        │           ├── common.php
        │           ├── config.php
        │           └── queue
        │               ├── CallQueuedHandler.php
        │               ├── Connector.php
        │               ├── Job.php
        │               ├── Listener.php
        │               ├── Queueable.php
        │               ├── ShouldQueue.php
        │               ├── Worker.php
        │               ├── command
        │               │   ├── Listen.php
        │               │   ├── Restart.php
        │               │   ├── Subscribe.php
        │               │   └── Work.php
        │               ├── connector
        │               │   ├── Database.php
        │               │   ├── Redis.php
        │               │   ├── Sync.php
        │               │   └── Topthink.php
        │               └── job
        │                   ├── Database.php
        │                   ├── Redis.php
        │                   ├── Sync.php
        │                   └── Topthink.php
        └── workerman
            ├── gateway-worker-for-win
            │   ├── MIT-LICENSE.txt
            │   ├── README.md
            │   ├── composer.json
            │   └── src
            │       ├── BusinessWorker.php
            │       ├── Gateway.php
            │       ├── Lib
            │       │   ├── Context.php
            │       │   ├── Db.php
            │       │   ├── DbConnection.php
            │       │   └── Gateway.php
            │       ├── Protocols
            │       │   └── GatewayProtocol.php
            │       └── Register.php
            └── workerman-for-win
                ├── Autoloader.php
                ├── Connection
                │   ├── AsyncTcpConnection.php
                │   ├── AsyncUdpConnection.php
                │   ├── ConnectionInterface.php
                │   ├── TcpConnection.php
                │   └── UdpConnection.php
                ├── Events
                │   ├── Ev.php
                │   ├── Event.php
                │   ├── EventInterface.php
                │   ├── Libevent.php
                │   ├── React
                │   │   ├── ExtEventLoop.php
                │   │   ├── LibEventLoop.php
                │   │   └── StreamSelectLoop.php
                │   └── Select.php
                ├── Lib
                │   ├── Constants.php
                │   └── Timer.php
                ├── MIT-LICENSE.txt
                ├── Protocols
                │   ├── Frame.php
                │   ├── Http
                │   │   └── mime.types
                │   ├── Http.php
                │   ├── ProtocolInterface.php
                │   ├── Text.php
                │   ├── Websocket.php
                │   └── Ws.php
                ├── README.md
                ├── WebServer.php
                ├── Worker.php
                └── composer.json

131 directories, 439 files



实例下载地址

PHP集成gatewayworkman在线聊天系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警