さまざまな RSS フィードを定義して日付順のページに出力できるようにする、PHP で使用できるスクリプトまたはクラスはありますか?
複数のソースから解析された RSS フィードをまとめて日付順にソートしたページが必要です。
これを実行できるスクリプトの 1 つにSimplePieがあります。複数のフィードを時間と日付で並べ替えるを参照してください。
// Create a new SimplePie object
$feed = new SimplePie();
// Instead of only passing in one feed url, we'll pass in an array of three
$feed->set_feed_url(array(
'http://digg.com/rss/index.xml',
'http://feeds.tuaw.com/weblogsinc/tuaw',
'http://feeds.uneasysilence.com/uneasysilence/blog'
));
// Initialize the feed object
$feed->init();
// This will work if all of the feeds accept the same settings.
$feed->handle_content_type();
foreach ($feed->get_items() as $item) {
$item->get_title(), "\n";
}