RSSデータファイル(Atom, RSS)をHTTPサーバより取得し、Pear XML_Feed_Parserクラスを用いて要素分解(連想配列に読み込み)を行う手法 次の例では、Atom, RSS0.91, RSS1, RSS2.0が読み込み可能である。 function read_rss($uri) { $nSwTopicCount = 10; // 表示する記事数 $nSwDescription = 1; // 本文を表示するかどうか $nSwPrevDays = 1; // 過去1日分を表示 // RSSファイルの受信 $strRssSource = file_get_contents($uri); if($strRssSource == false) { print("<p>RSSファイル読み込み失敗</p>\n"); return ; } // XML_RSSクラスの初期化と、受