1

我正在尝试使用 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 是否不适用于包含 : 的标记名?

4

1 回答 1

2

aws 不是标记名的一部分 - 它是命名空间。

getElementsByTagNameNS

http://www.php.net/manual/en/domdocument.getelementsbytagnamens.php

于 2010-07-06T00:51:30.017 回答