1
<?php
    $doc = new DOMDocument();
    $doc->load('http://weather.yahooapis.com/forecastrss?p=VEXX0024&u=c');
    $channel = $doc->getElementsByTagName("channel");
    foreach($channel as $chnl)
    {
        $item = $chnl->getElementsByTagName("item");
        foreach($item as $itemgotten)
        {
            $describe = $itemgotten->getElementsByTagName("description");
            $description = $describe->item(0)->nodeValue;
            echo $description;
        }
    }
?>

如您所见,这是一个简单的脚本,它从上面的 url 返回标签的内容。问题是我不需要该内容,我需要标签内的内容。我需要属性codetemptext。我如何用我的实际代码做到这一点?谢谢

前标签内容:

<yweather:condition  text="Partly Cloudy"  code="30"  temp="30"  date="Fri, 16 Jul 2010 8:30 am AST" />
4

2 回答 2

5

就像是:

echo $itemgotten->getElementsByTagNameNS(
    "http://xml.weather.yahoo.com/ns/rss/1.0","condition")->item(0)->
     getAttribute("temp");

关键是您必须使用getElementsByTagNameNS而不是getElementsByTagName指定"http://xml.weather.yahoo.com/ns/rss/1.0"命名空间。

您知道这yweather是一个快捷方式,http://xml.weather.yahoo.com/ns/rss/1.0因为 XML 文件包含一个xmls属性:

<rss version="2.0" xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0"
    xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
于 2010-07-16T21:34:02.007 回答
0

怎么样:

如果您需要使用命名空间获取任何内容,则有相应的以 . 结尾的方法NS

于 2010-07-16T21:31:54.757 回答