PHP code example of up9cloud / engine.io-php-client

1. Go to this page and download the library: Download up9cloud/engine.io-php-client 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/ */

    

up9cloud / engine.io-php-client example snippets



use eio\Client;

$client = new Client('ws://localhost:9527');
$client->send(json_encode([
	'channel'=>'all',
	'message'=>'helloworld'
]));


use eio\Client;

$options = [
	// TODO: see src/Transport.php
];
// builtin debug method
$debug = true;

// custom debug method
$debug = function ($time, $messages){
	printf('[%.4f]: %s' . PHP_EOL, $time, $messages);
};
$client = new Client($uri, $options, $debug);