I try to read a JSON object and parse it. The code that I'm using is the following one:
<?php
$json_string2 = '{"Products":[
{"Size":"klklkkl",
"No":"1352285923",
"KnowDate":true,
"Subdata":[
{
"item" : "1",
},
{
"item" : "455",
}],
"Info":true
}]
}';
$obj = json_decode($json_string2, true);
foreach($obj as $key => $value)
{
$size = $value->{'Size'};
$no = $value->{'No'};
$knowdate = $value->{'KnowDate'};
$info = $value->{'Info'};
}
.
.
?>
But in the line into the for loop i receive the following error:
Notice: Trying to get property of non-object in C:\xampp\htdocs\PhpProject2\parseJson.php on line...
What is the solution to this problem?Does anyone knows?
var_dump($obj)to see exactly what you're getting and how to reference it. – Marc B Nov 7 '12 at 20:25var_dump($obj);just before theforeachand post what it returns? – GigaWatt Nov 7 '12 at 20:25foreachyou need to reference the properties with$value['<key>']instead of$value->{'<key>'}? – Joshua Dwire Nov 7 '12 at 20:25