<?php $json = '{ "Products": [ { "_id": 1 }, { "_id": 2 } ] }'; $decoded = json_decode($json, true); foreach($decoded as $inner_array) { foreach($inner_array as $products) { echo $products['_id']."\n"; } }
You have javascript disabled. You will not be able to edit any code.