<?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返回標記的內容。問題是我不需要這些內容,我需要標籤內的人。我需要的屬性代碼,臨時,文本。我如何簡單地使用我的實際代碼?由於如何從PHP中的Yahoo Weather RSS獲取標籤「<yweather:condition>」?
防爆標籤內容:
<yweather:condition text="Partly Cloudy" code="30" temp="30" date="Fri, 16 Jul 2010 8:30 am AST" />