<?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からタグのコンテンツを返す単純なスクリプトです。事は私がそのコンテンツを必要としないということです、私はタグの中にいるものが必要です。属性コード、temp、textが必要です。実際のコードでこれを簡単に行うにはどうすればよいですか?ありがとう
タグコンテンツの例:
<yweather:condition text="Partly Cloudy" code="30" temp="30" date="Fri, 16 Jul 2010 8:30 am AST" />