Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I am trying to access latitude & longitude values from here->

https://graph.facebook.com/79537378027/albums

here is what I am trying

$File= file_get_contents('https://graph.facebook.com/79537378027/albums');
$p=json_decode($File);
foreach ($p->data as $loc)
{
echo $loc->place[0].latitude;}

But I am not getting values. If I try with simple $loc->latitude it won't give me anything as latitude is a sub-child of place.

share|improve this question
The dot is the string concatenation operator only in PHP. Please set the error_reporting of your test system to a sensible value. – CBroe Feb 4 at 15:30
@CBroe didn't get what you said – Programer Feb 4 at 15:56
$loc->place[0].latitude does not make any sense syntax-wise. – CBroe Feb 4 at 16:03
@CBroe I know then how can I access latitude ? – Programer Feb 4 at 16:15

closed as not a real question by CBroe, Igy, Perception, ithcy, user97693321 Feb 6 at 4:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

Try this:

<?php

$File= file_get_contents('https://graph.facebook.com/79537378027/albums');
$p=json_decode($File);
foreach ($p->data as $loc)
{
    if($loc->place) {
        echo $loc->place->location->latitude;
    }
}

?>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.