openweathermap からの気象データの取得に失敗します。これが私のコードです:
$xml = new
SimpleXMLElement(file_get_contents('http://api.openweathermap.org/data/2.5/weather?q=london&mode=xml'));
$country = $xml->code->country;
$city = $xml->code->city;
echo "Country: $country<br/>City: $city";
エコーすると、まったく何も得られません。助けていただければ幸いです。