我需要PHP JSON幫助。PHP JSON Array獲取值
我有電流輸出:
{
"status": 200,
"response_msec": 15,
"data": {
"android": {
"test1": 15,
"test2": 6,
"test3": 15,
"test4": 101,
"test5": 87,
"test6": 8,
"test9": 119,
"test10": 101,
"test11": 107
}
}
}
我需要打印該值:test1 , test2 , test3 ...,test11 .
我已經測試了一些方法:
$json = json_decode($result, true);
$dec = (Array)json_decode($result);
print_r ($dec["android"]);
和
foreach ($array as $value)
{
echo $value->android;
}
但不行。
非常感謝你最好的問候效應初探, –