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.

I have heard abt word JSON or JSON array. One programmer said me that it can be used for making website with multiple language. It is possible to encode data before inserting to database. So I want to insert data to database in 3 languages how can I do that with json?

$content=array("tr"=>"content in turkish","ru"=>"content in russian","en"=>"content in english")
share|improve this question
What you're referring to is i18n, though a keyed-array can be used to "Translate" items. e.g. <input type="submit" value="<?= $LANG['SUBMIT_BUTTON']; ?>" /> where $LANG = $LANGUAGES['en-us']. But JSON is just a standard for serializing data. – Brad Christie Nov 3 '11 at 13:36

closed as not a real question by Kolink, powtac, mario, Damien Pirsy, Josh Nov 3 '11 at 22:42

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can have a look at json_decode and json_encode in the manual. It's unclear how such a serialization scheme would help you with localization however, and it certainly doesn't simplify dealing with database content.

share|improve this answer

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