我正在努力解析一個簡單的JSON數組,我對此很感興趣,所以試圖學習。解碼JSON數組
這裏的數據:
{"data":[
{"name":"john","id":"123"},
{"name":"dave","id":"345"}
], "other":
{"foo":"bar"}
}
我只希望data
信息。
這裏的我想要什麼(也還有什麼我試過):
$list = json_decode(file_get_contents($jsonURL),true);
foreach ($list as $element){
//$id = $element->data->id; // this didn't work either
//$name = $element->data->name; // this didn't work either
$id = $element[data][id];
$name = $element[data][name];
$message .= $id.' - '.$name.'</br>';
}
爲什麼它沒有返回任何想法?