i'm having structure of json like given below
{
"today": {
"currencyCode": "USD",
"value": 100
},
"yesterday": {
"currencyCode": "USD",
"value": 90
}
}
and i want to convert it to multi-dimentional array in php like given below:-
Array
(
[today] => Array
(
[currencyCode] => USD
[value] => 100
)
[yesterday] => Array
(
[currencyCode] => USD
[value] => 90
)
)