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:
How to parse a JSON string using PHP

this is my data object

{
  "data": {
    "translations": [
      {
        "translatedText": "Hallo Welt"
      },
      {
        "translatedText": "Hallo Berlin"
      }
    ]
  }
}

how do I parse this using PHP?

this is a jsonObject that contains jsonObject("data") that contains jsonArray that contains jsonObjects at each index that contains key/value "translatedText"

this is what I have and my assumption

$jsonResult = json_decode($data);
$translated_text = $jsonResult->data->translations[0]->translatedText;`
share|improve this question
1  
Have you tried: json_decode()? – PeeHaa 埽 Nov 26 '12 at 19:16
Have you tried: var_dump($jsonResult);? – PeeHaa 埽 Nov 26 '12 at 19:19
1  
Actually, this is a fair question. If you come to PHP from other languages PHP handles JSON differently. There are no jsonArray or jsonObject types in PHP (like in Java or C#). – Mathew Foscarini Nov 26 '12 at 19:28

marked as duplicate by PeeHaa 埽, tereško, Madara Uchiha, Baba, Kate Gregory Nov 26 '12 at 20:34

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.

3 Answers

$array = json_decode($json_element, true);

to make associative array.

share|improve this answer

I'm think this is what it would be. json_decode does not parse to a PHP object, but to just an array.

$jsonResult = json_decode($data);
$translated_text = $jsonResult['data']['translations'][0]['translatedText'];
share|improve this answer
$array = json_decode($json_element);
share|improve this answer

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