phpでrssの情報を抜き出したい場合は、titleやlinkの要素は以下の通りで抜き出せます。
<?php // Load and parse the XML document
$rss = simplexml_load_file('http://partners.userland.com/nytRss/nytHomepage.xml');
$title = $rss->channel->title;
?>
…
select c1,c2,c3 from A
union all
select c1,c2,c3 from B
参照元:http://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q1115439551
この投稿へのコメント
コメントはまだありません。