How can i update the following JSON object dynamically using php?
this my json.
{
"1":
{
"value0":
{
"id":0,
"status":0,
"quantity":"110"
},
"value1":
{
"id":1,
"status":1,
"quantity":"120"
}
}
"2":
{
value0":
{
"id":0,
"status":0,
"quantity":"132"
},
"value1":
{
"id":1,
"status":1,
"quantity":"123"
},
}
}
I want to change the status of value0 from key 1, to 1. How can I acheive this?
{"1":{"value0":{"status":1}}}.