Ayrıştırma xml sorun

0 Cevap php

Ben PHP ve simplexml_load_file ama onun hiçbir şey görünmüyor kullanarak bu ayrıştırmak çalışıyorum?

http://developer.multimap.com/API/geocode/1.2/OA10081917657704697?qs=Heaton&countryCode=GB

Nerede yanlış gidiyorum? Teşekkürler

$results = simplexml_load_file($url);
foreach($results->Location() as $location) {
  foreach($location->Address() as $address) {
    foreach($address->Areas() as $areas) {
       foreach($areas->Area as $area) {
          echo $area->area;
       echo "<br />";
       }
     }
   }
}

0 Cevap