当前位置:  开发笔记 > 编程语言 > 正文

你如何生成RSS提要?

如何解决《你如何生成RSS提要?》经验,为你挑选了1个好方法。

我自己从来没有这样做过,而且我从来没有订过饲料,但似乎我要创建一个,所以我很想知道.对我来说唯一明显的方法是,当使用新项目(博客文章,新闻项目等)更新系统时,应该将新元素写入rss文件.或者有一个脚本,每天检查几次系统更新,并写入rss文件.尽管如此,可能还有更好的方法.

而且,如果添加新元素,是否应删除旧元素?

编辑:我应该提到,我正在使用PHP,特别是使用CodeIgniter,使用mySQL数据库.



1> Zoredache..:

对于PHP我使用feedcreator http://feedcreator.org/

useCached();
$rss->title = "Item List";
$rss->cssStyleSheet='';
$rss->description = 'this feed';
$rss->link = CONFIG_SYSTEM_URL;
$rss->syndicationURL = CONFIG_SYSTEM_URL.'feed.php';


$articles=new itemList();  // list of stuff
foreach ($articles as $i) {   
    $item = new FeedItem();
    $item->title = sprintf('%s',$i->title);
    $item->link = CONFIG_SYSTEM_URL.'item.php?id='.$i->dbId;
    $item->description = $i->Subject;   
    $item->date = $i->ModifyDate;   
    $item->source = CONFIG_SYSTEM_URL;   
    $item->author = $i->User;
    $rss->addItem($item);
}

print $rss->createFeed($feedformat);

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有