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.

how do I get [{}] in JSON? If I encode array() in PHP, the JSON result is []. What is [{}] in JS anyway?

Thanks

share|improve this question
[{}] is an array containing a single empty object. – mootinator Sep 25 '11 at 20:04

2 Answers

up vote 4 down vote accepted

you can use: array(new stdClass) which when json_encoded, should end up to be [{}]

To answer your second question of "what is [{}] anyway?", well it is simple:

it's an array, whose only element is an object with no members in it.

share|improve this answer

[{}] is an array containing an object. JSON is an object and you can have a JSONArray within it and more objects within that. Don't overthink the data structure :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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