PHP code example of iliaal / fastjson
1. Go to this page and download the library: Download iliaal/fastjson 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/ */
iliaal / fastjson example snippets
$json = fastjson_encode(['hello' => 'world']); // string|false
$data = fastjson_decode($json, associative: true); // mixed
$ok = fastjson_validate($json); // bool
if ($data === null && fastjson_last_error() !== 0) {
fwrite(STDERR, fastjson_last_error_msg());
}
bash
# PIE (PHP Foundation's extension installer; uses the composer.json
# at the repo root with type: "php-ext")
pie install iliaal/fastjson