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?
print_r($json)? – Bojangles Jan 6 '12 at 0:45$string =breaks it. Is it part of your response? – Pekka 웃 Jan 6 '12 at 0:46