If all else fails...
<?php
class DOM
{
public static function innerHTML($element)
{
$tmp = new DOMDocument();
$tmp->appendChild($tmp->importNode($element, true));
return trim($tmp->saveHTML());
}
}
function curl($url)
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
$html = curl('http://www.facebook.com/pages/Ramat-Gan/112604772085346?_fb_noscript=1');
$dom = new DOMDocument();
@$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$x = $xpath->query('//div[@id="places_directory_breadcrumb_header"]')->item(0);
echo DOM::innerHTML($x);
?>
Result...
<div id="places_directory_breadcrumb_header" data-referrer="places_directory_breadcrumb_header">
<div class="fsm fwn fcg">
<a href="http://www.facebook.com/directory/places/">Places</a><i class="mhs img sp_dob1w7 sx_c6f550"></i>
<a href="http://www.facebook.com/pages/Israel/108099562543414">Israel</a><i class="mhs img sp_dob1w7 sx_c6f550"></i>
<a href="http://www.facebook.com/pages/Tel-Aviv-Israel/106371992735156">Tel Aviv</a><i class="mhs img sp_dob1w7 sx_c6f550"></i>
<a href="http://www.facebook.com/pages/Ramat-Gan/112604772085346">Ramat Gan</a>
</div>
</div>
You can then extract links and city/state names...