Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/walkor/phpsocket.io-emitter
https://github.com/walkor/phpsocket.io-emitter
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/walkor/phpsocket.io-emitter
- Owner: walkor
- Created: 2015-10-04T15:46:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-01-26T03:51:06.000Z (almost 4 years ago)
- Last Synced: 2024-04-14T02:56:02.303Z (7 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 23
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phpsocket.io-emitter
## Install
composer require workerman/phpsocket.io-emitter## example
```php
$emitter = new Emitter();
$emitter->in('one room')->emit('newmsg', 'hello');
$emitter->emit('newmsg', array('type'=>'blog','content'=>'.....'));
```