Код: Выделить всё
[{
"Value 1":"a",
"Value 2":
{
"Value 3":
{
"Value4":11,
"Value5":"C",
},
"Value 4":
{
"Value6":12,
}
}
}]
Код: Выделить всё
$varkota = 'url to json output';
$datakota = json_decode(file_get_contents($varkota, true));
$data1 = json_decode($datakota[0]->Value2);
$data2 = json_decode($data1[0]->Value3);
echo $data2[0]->Value4;
Код: Выделить всё
! ) SCREAM: Error suppression ignored for
( ! ) Warning: json_decode() expects parameter 1 to be string, object given in debug.php on line 6
Call Stack
# Time Memory Function Location
1 0.0020 145280 {main}( ) ..\debug.php:0
2 4.1329 188648 json_decode ( ) ..\debug.php:6
( ! ) SCREAM: Error suppression ignored for
( ! ) Notice: Trying to get property of non-object in debug.php on line 7
Call Stack
# Time Memory Function Location
1 0.0020 145280 {main}( ) ..\debug.php:0
( ! ) SCREAM: Error suppression ignored for
( ! ) Notice: Trying to get property of non-object in on line 8
Call Stack
# Time Memory Function Location
1 0.0020 145280 {main}( ) ..\debug.php:0
Подробнее здесь: https://stackoverflow.com/questions/434 ... on-and-php