[Solved] Parse JSON object with PHP [duplicate]


It seems to me like it should be.

foreach($result['currency']as $item) {
    print $item['value'];
 }

Because each currency is 0,1,2 and so on.
And in the item 0,1,2 there is the “value”.

1

solved Parse JSON object with PHP [duplicate]