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 am trying to decode Json into an array but i get the following error.

Fatal error: Cannot use object of type stdClass as array in C:\wamp\www\temp\asklaila.php on line 6

code

<?php
$json_string = 'http://www.domain.com/jsondata.json';

$jsondata = file_get_contents($json_string);
$obj = json_decode($jsondata);
print_r($obj['Result']);
?>
share|improve this question
Potentially useful/related ... jondavidjohn.com/blog/2012/09/… – jondavidjohn Sep 28 '12 at 22:58

3 Answers

up vote 42 down vote accepted

as per http://php.net/json_decode, you need to specify you want an associative array instead of an object from json_decode:

json_decode($jsondata, true);
share|improve this answer
thanks a lot :) – Harsha M V Mar 2 '11 at 7:12
   
It begs the question, what are the advantages of having it return as an array and not an object? – Foxinni Aug 16 '12 at 13:31
1  
It raises the question. To "beg a question" means to assume something that remains to be proved (ref). In either case, the advantage might be that the OP is more comfortable traversing arrays than objects, or that some other, already implemented, code requires an array. – jamesnotjim Mar 6 at 15:31

try this

$json_string = 'http://www.domain.com/jsondata.json';
$jsondata = file_get_contents($json_string);
$obj = json_decode($jsondata,true);
echo "<pre>"
print_r($obj);
share|improve this answer

Just in case you are working on php less then 5.2 you can use this resourse.

http://techblog.willshouse.com/2009/06/12/using-json_encode-and-json_decode-in-php4/

http://mike.teczno.com/JSON/JSON.phps

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.