I have an object like this:
[
[
"checkthisout.net",
"1524621",
"1",
"Amazing Wines",
"",
"0",
"",
" ",
" ",
"hash",
{
"i": "http://img.chekthisout.net/xyz.jpg",
"l": "//link_to_checkthisout.net",
"adc": []
}
],
[
"allthebuzz.com",
"1482859",
"1",
"Best Retirement Communities in USA",
"",
"0",
"",
" ",
" ",
"hash",
{
"i": "http://img.allthbuzz.com/abc.jpg",
"l": "//link_to_allthebuzz.com",
"adc": []
}
],
]
When I use json_decode() on this, I get an array as expected. However, the curly braces content is parsed as "stdClass" (as reported by the debugger). I am not sure how to access this data within my code?