嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
PHP集成gatewayworkman在线聊天系统
用的ThinkPHP5集成gateway仿微信在线聊天系统,数据库文件已经放在里面,可以直接下载运行使用。功能虽未够完善,但聊天功能已经可用,剩下功能只是对数据库增删查改操作。
.
├── 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