PHP code example of ekstazi / websocket-common-amphp

1. Go to this page and download the library: Download ekstazi/websocket-common-amphp 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/ */

    

ekstazi / websocket-common-amphp example snippets




use ekstazi\websocket\common\amphp\Reader;
use ekstazi\websocket\common\amphp\Connection;
use ekstazi\websocket\common\amphp\Writer;

/** @var \Amp\Websocket\Client $client */
$stream = new Connection(new Reader($client), new Writer($client));
$stream->setDefaultMode(Writer::MODE_TEXT);
// alternative way to create stream
// $stream = Connection::create($client, Writer::MODE_TEXT);
yield $stream->read();
yield $stream->write('test');