Ben WeatherBug API kullanmaya çalışıyorum, ancak oldukça erken yargılamanın sıkışmış gibi görünüyor ediyorum.
Denedim [çok basit] kodu:
function weather_widget($apikey, $zipcode) {
$url = "http://$apikey.api.wxbug.net/getLiveWeatherRSS.aspx?ACode=$apikey&zipcode=$zipcode&unittype=0&outputtype=1";
$contents = file_get_contents($url);
$doc = new DOMDocument();
$doc->loadXML($contents);
return $doc->getElementsByTagName('aws:weather');
}
var_dump(weather_widget($key, $code));
Bu üretilen:
object(DOMNodeList)#2 (0) { }
'S: XML DOM içeren İsmi belirtilen de çalışmıyor?