我正在尝试使用 weatherbug API,但似乎在程序的早期就被卡住了。
我试过的[非常简单]代码:
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));
这产生了:
object(DOMNodeList)#2 (0) { }
XML DOM 是否不适用于包含 : 的标记名?