Array Traversal

In PHP it's easy to get JSON decoded by $data = json_decode($input). But many newcomers are confused by how to pick individual information from the resulting array or object structure then. This visualization is intended to help.

Hover with the mouse over entries or keys to see the required array or object traversal syntax:

$data

Your JSON might be corrupt. See JSONLint. Test if you need to disable magic_quotes or something.


link

Also check the manual on array syntax and how to work with objects.
Or how to use a foreach to loop over entries.