PHP code example of deepstreamhub / deepstream.io-client-php
1. Go to this page and download the library: Download deepstreamhub/deepstream.io-client-php 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/ */
deepstreamhub / deepstream.io-client-php example snippets
$client = new DeepstreamClient( 'https://api.deepstreamhub.com/api/v1', array(
'token' => 'xxxx-xxxx-xxxx-xxxx'
))
# Writing full data
$client->setRecord( 'user/johndoe', array(
'firstname' => 'John',
'lastname' => 'Doe',
'age' => 32,
'pets' => array( 'hamster', 'cat' )
));
# Writing partial data
$client->setRecord( 'user/johndoe', 'age', '33' );
$firstname = $client->getRecord( 'user/johndoe' )->firstname;
$client->deleteRecord( 'user/johndoe' );
$version = $client->getRecordVersion( 'user/johndoe' );
#with data
$twentyfour = $client->makeRpc( 'multiply-by-two', 12 );
#without data
$client->makeRpc( 'logout' );
#with data
$client->emitEvent( 'new-message', 'hey, what\'s up?' );
#without data
$client->emitEvent( 'ping' );
$client->startBatch()
$client->emitEvent( 'new-message', 'hey, what\'s up?' );
$client->getRecord( 'user/johndoe' );
$client->setRecord( 'user/mike', 'age', 12 );
$client->executeBatch();
php phpunit-6.2.1.phar --bootstrap src\DeepstreamClient.php test\client-test.php