嗨,我正在尝试从这里访问纬度和经度值->
https://graph.facebook.com/79537378027/albums
这是我正在尝试的
$File= file_get_contents('https://graph.facebook.com/79537378027/albums');
$p=json_decode($File);
foreach ($p->data as $loc)
{
echo $loc->place[0].latitude;}
但我没有得到价值。如果我尝试简单$loc->latitude
,它不会给我任何东西,因为纬度是地方的子孩子。