我有这个简单的JSON {"result":true,"data":[{"Position":"135"}]}
我试着用它来阅读:
$json = file_get_contents('https://...link/here..');
$obj = json_decode($json);
echo $obj->result[1]->data->Position;
但它不起作用。我哪里弄错了?谢谢你的帮助!
答案 0 :(得分:0)
您正在错误地处理从JSON字符串
创建的PHP对象中的数据$json = file_get_contents('https://...link/here..');
$obj = json_decode($json);
echo $obj->data[0]->Position;
或者如果有更多的出现
foreach ( $obj->data as $idx=>$data) {
echo $data->Position;
}