Skip to content

JsonModifier - a PHP package allows developers to manipulate JSON files by performing data lookup and many other operations such as read, add, delete and update. 🐘

License

Notifications You must be signed in to change notification settings

91ahmed/JsonModifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

62 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

JsonModifier

JsonModifier was created to help php developers modify Json files by performing CRUD and data lookup operations.

Note: To avoid any errors the JSON file you need to process should have a valid format, like the following example.

[
   {
      "items":[
         {
            "id":"1",
            "name":"original t-shirt",
            "unitprice":"240.00"
         },
         {
            "id":"2",
            "name":"Cotton Polo Shirt",
            "unitprice":"123.00"
         }
      ]
   }
]

Install

via composer

composer require jsonmodifier/json

How to Use

// Import vendor/autoload file
require ('vendor/autoload.php'); 

// Create new instance
// The construct method take one argument which is the JSON file path.
$json = new PhpJsonModifier\JsonModifier('json/items.json');

// Start performing your operations.
$data = $json->index('items')
             ->get();

Retrieve all data from json file.

$data = $json->index('items')
             ->get();

Update data.

// Update item unitprice and color where "item_id" = 3
$update = $json->index('items')
               ->update(
                   array('item_id', '3'), // condition (WHERE item_id = 3)
                   array(
                        ['item_unitprice' => '224.50'],
                        ['item_color' => '#fff']
                   )
);

Add new object.

// Add new item
$add = $json->index('items')
            ->add([
                "item_id" => "10",
                "item_name" => "black shirt"
            ]);

Search for all items.

// Search for items where "item_id" = 3
$search = $json->index('items')
               ->search(['item_id' => '3']) // condition (WHERE item_id = 3)
               ->get();

Search first to get single item.

// Search for items where "item_id" = 3
$search = $json->index('items')
               ->search(['item_id' => '2']) // condition (WHERE item_id = 3)
               ->first();

About

JsonModifier - a PHP package allows developers to manipulate JSON files by performing data lookup and many other operations such as read, add, delete and update. 🐘

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages