I got an array which looks like this:
{
"result": {
"549051622": {...stuff}
"549051623": {...stuff}
"549051624": {...stuff}
and I'm doing a foreach loop to get all the items
foreach($json_obj1['result'] as $item)
{
// access to the number
$item[???]
}
But how do I get the "549051622" when im refering to the array object as $item?
Found nothing yet for this very problem..