1. Go to this page and download the library: Download jsonmodifier/json 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/ */
jsonmodifier / json example snippets
use PhpJsonModifier\JsonModifier;
$json = new JsonModifier('path/to/your/jsonfile.json');
$data = $json->index('items')->get();
$update = $json->index('items')->update(
['id', '3'], // Condition: WHERE id = 3
[
['unitprice' => '224.50'],
['color' => '#fff']
]
);