PHP code example of setono / client
1. Go to this page and download the library: Download setono/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/ */
setono / client example snippets
use Setono\Client\Client;
// initialization with a generated id and an empty metadata object
$client = new Client();
// initialization with your own id and existing metadata
$client = new Client('my-client-id', ['foo' => 'bar']);
// get the client id
$id = $client->id;
// set metadata
$client->metadata->set('foo', 'bar');
// set metadata that expires in 1 hour
$client->metadata->set('foo', 'bar', 3600);
// get metadata
$client->metadata->get('foo');
// remove metadata
$client->metadata->remove('foo');