PHP code example of fandogh / php-ubjson
1. Go to this page and download the library: Download fandogh/php-ubjson 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/ */
fandogh / php-ubjson example snippets
// Don't forget to autoload.php';
// Test data
$payload = ['hello'=>123];
// Encode using UBJSON
$encoded = \UBJSON::encode($payload);
# Incorrect!
echo($encoded); // {SUhelloU{}
# Correct!
echo(bin2hex($encoded)); // "7b53550568656c6c6f557b7d"
// Test decoding
$decoded = \UBJSON::decode($encoded);
var_dump($decoded); // array(1) { ["hello"]=> int(123) }
bash
composer
js
"...
"fandogh/php-ubjson": "^0.2.2",
...
}