php library for json and jsonc parsing
GitHub | Patreon | PayPal | Amazon
composer require robertsaupe/php-json
use robertsaupe\Json\Json;
$json = new Json();
print_r($json->decodeFile('path_to_file.json'));
use robertsaupe\Json\Jsonc;
$jsonc = new Jsonc();
print_r($jsonc->decodeFile('path_to_file.jsonc'));
-
box-project/box for basic Json parsing
- Kevin Herrera [email protected]
- Théo Fidry [email protected]
-
Alexander Shostak https://stackoverflow.com/a/43439966 for decode commented json