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 parse the following json that I got through a web service in php.

$string = [{xxx:"xxx",yyy:"yyy",zzz:"zzz"}, {xxx:"xxx",yyy:"yyy",zzz:"zzz"}];

I try to parse it as with json_decode but it doesn't work.

$json = json_decode($string);

Returns nothing. What should I do?

share|improve this question
Have you turned error reporting on in PHP? Have you tried print_r($json)? – Bojangles Jan 6 '12 at 0:45
1  
What you show above is not valid JSON, the $string = breaks it. Is it part of your response? – Pekka 웃 Jan 6 '12 at 0:46
2  
That's not JSON. It's a Javascript expression. Try the search, this came up before. – mario Jan 6 '12 at 0:48

1 Answer

That's not valid JSON. First of all, the entire thing needs to be a string. Use single-quotes here. Then, every name/value within the string needs to be double-quoted. Like so:

<?php
$string = '{ "one": {"xxx": "xxx", "yyy": "yyy", "zzz": "zzz"}, "two": {"xxx": "xxx", "yyy": "yyy", "zzz": "zzz"}}';
$json = json_decode($string);

var_dump($json);
?>

http://codepad.org/sOeEfOnr
http://php.net/manual/en/function.json-decode.php

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.