PHP code example of thruster / socket
1. Go to this page and download the library: Download thruster/socket library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thruster / socket example snippets
$loop = new EventLoop();
$socket = new Server($loop);
$socket->on('connection', function ($conn) {
$conn->write("Hello world!\n");
$conn->on('data', function ($data) use ($conn) {
$conn->close();
});
});
$socket->listen(1337);
$loop->run();
$socket->listen(1337, '192.168.0.1');