Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
can a JSON start with [?

This is an abbreviated version of my problem.
My json output has comma separated groups, how can i make this work?

$json = '{"foo": "12345"}, {"foo": "6789"}, {"bar": "001100"}';
$obj = json_decode($json);
print $obj[0]->{'foo'};

currently it gives me an error Notice: Trying to get property of non-object

share|improve this question
5  
You need to wrap your input in [ and ] to make it a valid array in JSON notation. – mario Nov 9 '12 at 1:45
you can use jsonlint.com to validate your json string. It's usefull sometime. – EmeraldCoder Nov 9 '12 at 1:48

marked as duplicate by mario, markus, Kjuly, newfurniturey, Nik.... Nov 10 '12 at 4:01

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

Wrap your list into javascript array:

$json = '{"foo": "12345"}, {"foo": "6789"}, {"bar": "001100"}';
$json = '[' . $json . ']';
$obj = json_decode($json);
print $obj[0]->{'foo'};
share|improve this answer
yep: codepad.org/3o3KdnfN – jk. Nov 9 '12 at 1:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.