PHP code example of jsonmodifier / json

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']
    ]
);

$add = $json->index('items')->add([
    "id" => "10",
    "name" => "black shirt",
    "unitprice" => "150.00"
]);

$search = $json->index('items')->search(['id' => '2'])->get();

$search = $json->index('items')->search(['id' => '2'])->first();