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 decoded a json string and then Type casted it into any Array and tried to access it later. But it generate Undefined Index Error

Here is my sample code

$json = '{"1":"Active","0":"Inactive"}'; //Yes, it is a valid Json String
$decodedObject = json_decode($json);
$array = (array)$decodedObject;
echo $array['1']; // This generates undefinded Index 1 Error

Here is the display of the array and object

stdClass Object
(
    [1] => Active
    [0] => Inactive
)

Array
(
    [1] => Active
    [0] => Inactive
)
share|improve this question
Just do var_dump with $array and look what you've got. – xappymah Mar 27 '11 at 8:26

2 Answers

up vote 1 down vote accepted

1.) instead of making it in two steps how about doing it like:

$decodedArray = json_decode($json, true);

it will directly give you the array instead of object

2.) make sure your json code is corret:

{"1":"Active","0":"Inactive"}

3.) your var_dump shows that array{[1]=>.... so why refering it like $array['1'] can it be even simpler $array[1]

share|improve this answer
wow, this fixed everything. I will accept it in five minute :D Thanks – mrN Mar 27 '11 at 8:27

No, it is not a valid JSON string (JSONLint is your friend). You used a comma instead of a colon:

{"1":"Active","0","Inactive"} // invalid
{"1":"Active","0":"Inactive"} // valid
share|improve this answer
It was a typo, and it is fixed now. But the error remains – mrN Mar 27 '11 at 8:25
+1 for JSONLint – Merlyn Morgan-Graham Mar 27 '11 at 8:33

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.