PHP RSS/Feed类库

通用PHP RSS/Feed 生成类库(支持RSS 1.0/2.0和ATOM)
PHP Universal Feed Generator (supports RSS 1.0, RSS 2.0 and ATOM)

 

可 生成的RSS版本:

  • RSS 1.0 (which officially obsoleted RSS 0.90)
  • RSS 2.0 (which officially obsoleted RSS 0.91, 0.92, 0.93 and 0.94)
  • ATOM 1.0

功能:

  • 可生成RSS 1.0, RSS 2.0 和ATOM 1.0 feeds
  • 所有生成的Feed可经过验证 feed validator .
  • 支 持所有Feed属性.
  • 容易的设置channel 和 feed 条目
  • 为不同的版本使用命名空间.
  • 自 动转换日期格式.
  • 为ATOM feeds生成 UUID (通用唯一标识符 Universally Unique Identifier).
  • 支持子标签和子标签属性. (如: image 和 encloser tags)
  • 完全的 PHP5面向对像构造 class structure.
  • 为需要的标签CDATA 编码.
  • 使用差不多的代码生成所有 版本的feed

使用范例:

Java代码  

  1. <?php  
  2.   // This is a minimum example of using the class  
  3.   include("FeedWriter.php");  
  4.    
  5.   //Creating an instance of FeedWriter class.  
  6.   $TestFeed = new FeedWriter(RSS2);  
  7.    
  8.   //Setting the channel elements  
  9.   //Use wrapper functions for common channel elements  
  10.   $TestFeed->setTitle('Testing & Checking the RSS writer class');  
  11.   $TestFeed->setLink('http://www.ajaxray.com/projects/rss');  
  12.   $TestFeed->setDescription('This is test of creating a RSS 2.0 feed Universal Feed Writer');  
  13.    
  14.   //Image title and link must match with the 'title' and 'link' channel elements for valid RSS 2.0  
  15.   $TestFeed->setImage('Testing the RSS writer class','http://www.ajaxray.com/projects/rss','http://www.rightbrainsolution.com/images/logo.gif');  
  16.    
  17.     //Detriving informations from database addin feeds  
  18.     $db->query($query);  
  19.     $result = $db->result;  
  20.    
  21.     while($row = mysql_fetch_array($result, MYSQL_ASSOC))  
  22.     {  
  23.         //Create an empty FeedItem  
  24.         $newItem = $TestFeed->createNewItem();  
  25.           
  26.         //Add elements to the feed item     
  27.         $newItem->setTitle($row['title']);  
  28.         $newItem->setLink($row['link']);  
  29.         $newItem->setDate($row['create_date']);  
  30.         $newItem->setDescription($row['description']);  
  31.           
  32.         //Now add the feed item  
  33.         $TestFeed->addItem($newItem);  
  34.     }  
  35.    
  36.   //OK. Everything is done. Now genarate the feed.  
  37.   $TestFeed->genarateFeed();  
  38.    
  39. ?>  

 

补充:
另一个生成RSS 2.0的PHP Class    
下载: class_rss_writer.php

Java代码  

  1. <?php  
  2.    
  3. /** 
  4.  * 使用范例: 
  5.  * ============================================================== 
  6.     $feed = new RSS(); 
  7.     $feed->title       = "RSS Feed Title"; 
  8.     $feed->link        = "http://www.newyork.com/"; 
  9.     $feed->description = "Recent articles on newyork.com."; 
  10.   
  11.     $db->query($query); 
  12.     $result = $db->result; 
  13.     while($row = mysql_fetch_array($result, MYSQL_ASSOC)) 
  14.     { 
  15.         $item = new RSSItem(); 
  16.         $item->title = $title; 
  17.         $item->link  = $link; 
  18.         $item->setPubDate($create_date); 
  19.         $item->description = "<![CDATA[ $html ]]>"; 
  20.         $feed->addItem($item); 
  21.     } 
  22.     echo $feed->serve(); 
  23.  * ============================================================== 
  24.  */  
  25.    
  26. class RSS  
  27. {  
  28.     var $title;  
  29.     var $link;  
  30.     var $description;  
  31.     var $language = "en-us";  
  32.     var $pubDate;  
  33.     var $items;  
  34.     var $tags;  
  35.    
  36.     function RSS() {  
  37.         $this->items = array();  
  38.         $this->tags  = array();  
  39.     }  
  40.    
  41.     function addItem($item) {  
  42.         $this->items[] = $item;  
  43.     }  
  44.    
  45.     function setPubDate($when) {  
  46.         if(strtotime($when) == false)  
  47.             $this->pubDate = date("D, d M Y H:i:s ", $when) . "GMT";  
  48.         else  
  49.             $this->pubDate = date("D, d M Y H:i:s ", strtotime($when)) . "GMT";  
  50.     }  
  51.    
  52.     function getPubDate() {  
  53.         if(empty($this->pubDate))  
  54.             return date("D, d M Y H:i:s ") . "GMT";  
  55.         else  
  56.             return $this->pubDate;  
  57.     }  
  58.    
  59.     function addTag($tag, $value) {  
  60.         $this->tags[$tag] = $value;  
  61.     }  
  62.    
  63.     function out() {  
  64.         $out  = $this->header();  
  65.         $out .= "<channel>\n";  
  66.         $out .= "<title>" . $this->title . "</title>\n";  
  67.         $out .= "<link>" . $this->link . "</link>\n";  
  68.         $out .= "<description>" . $this->description . "</description>\n";  
  69.         $out .= "<language>" . $this->language . "</language>\n";  
  70.         $out .= "<pubDate>" . $this->getPubDate() . "</pubDate>\n";  
  71.    
  72.         foreach($this->tags as $key => $val)  
  73.             $out .= "<$key>$val</$key>\n";  
  74.         foreach($this->items as $item)  
  75.             $out .= $item->out();  
  76.    
  77.         $out .= "</channel>\n";             
  78.         $out .= $this->footer();  
  79.    
  80.         $out = str_replace("&", "&amp;", $out);  
  81.         return $out;  
  82.     }  
  83.       
  84.     function serve($contentType = "application/xml") {  
  85.         $xml = $this->out();  
  86.         header("Content-type: $contentType");  
  87.         echo $xml;  
  88.     }  
  89.    
  90.     function header() {  
  91.         $out  = '<?xml version="1.0" encoding="utf-8"?>' . "\n";  
  92.         $out .= '<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">' . "\n";  
  93.         return $out;  
  94.     }  
  95.    
  96.     function footer() {  
  97.         return '</rss>';  
  98.     }  
  99. }  
  100.    
  101. class RSSItem  
  102. {  
  103.     var $title;  
  104.     var $link;  
  105.     var $description;  
  106.     var $pubDate;  
  107.     var $guid;  
  108.     var $tags;  
  109.     var $attachment;  
  110.     var $length;  
  111.     var $mimetype;  
  112.    
  113.     function RSSItem() {  
  114.         $this->tags = array();  
  115.     }  
  116.    
  117.     function setPubDate($when) {  
  118.         if(strtotime($when) == false)  
  119.             $this->pubDate = date("D, d M Y H:i:s ", $when) . "GMT";  
  120.         else  
  121.             $this->pubDate = date("D, d M Y H:i:s ", strtotime($when)) . "GMT";  
  122.     }  
  123.    
  124.     function getPubDate() {  
  125.         if(empty($this->pubDate))  
  126.             return date("D, d M Y H:i:s ") . "GMT";  
  127.         else  
  128.             return $this->pubDate;  
  129.     }  
  130.    
  131.     function addTag($tag, $value) {  
  132.         $this->tags[$tag] = $value;  
  133.     }  
  134.    
  135.     function out() {  
  136.         $out .= "<item>\n";  
  137.         $out .= "<title>" . $this->title . "</title>\n";  
  138.         $out .= "<link>" . $this->link . "</link>\n";  
  139.         $out .= "<description>" . $this->description . "</description>\n";  
  140.         $out .= "<pubDate>" . $this->getPubDate() . "</pubDate>\n";  
  141.    
  142.         if($this->attachment != "")  
  143.             $out .= "<enclosure url='{$this->attachment}' length='{$this->length}' type='{$this->mimetype}' />";  
  144.    
  145.         if(empty($this->guid)) $this->guid = $this->link;  
  146.         $out .= "<guid>" . $this->guid . "</guid>\n";  
  147.    
  148.         foreach($this->tags as $key => $val) $out .= "<$key>$val</$key\n>";  
  149.         $out .= "</item>\n";  
  150.         return $out;  
  151.     }  
  152.    
  153.     function enclosure($url, $mimetype, $length) {  
  154.         $this->attachment = $url;  
  155.         $this->mimetype   = $mimetype;  
  156.         $this->length     = $length;  
  157.     }  
  158. }  

SimplePie是一个非常简单、实用的Syndication数据处理工具包。使用SimplePie ,可以快速的分析阅读RSS或Atom格 式数据。之前接触的更多是MagpieRSS,SimplePie在对RSS或Atom的数据处理能力上毫不逊色于MagpieRSS,同时 SimplePie拥有了比MagpieRSS更多的实用方法和属性,这可以帮助你快速的构建一个RSS阅读器或RSS数据处理模块。

Java代码  

  1. <?php  
  2. include ('simplepie/simplepie.inc');  
  3.   
  4. $simplepie=new SimplePie();  
  5. $simplepie->set_feed_url('http://ggggqqqqihc.yo2.cn/feed');  
  6. $simplepie->init();  
  7. echo '<h1>'.$simplepie->get_title().'</h1>';  
  8. foreach ($simplepie->get_items() as $item){  
  9.     echo '<h2><a href="'.$item->get_permalink().'">'.$item->get_title().'</a></h2>';  
  10.     echo '<p>'.$item->get_content().'</p>';  
  11. }  
  12. ?>  

获取到数据之后,调用 SimplePie 提供的实用方法,就很容易组装成一个个人的RSS阅读器了。

SimplePie 设计的一个很大的不合理之处是将 items 的排序方法内置在 init 方法中,这样想使用原生数据就需通过其他方式来实现了。

时间: 2024-11-02 08:26:07

PHP RSS/Feed类库的相关文章

使用Yahoo Pipes进行RSS Feed合烧

我以前是使用FeedBurner Networks进行RSS Feed合烧的,方法很简单,将我常用的几个Feed都邀请加入FeedBurner Networks后,使用一个Networks的RSS进行输出Feed,就可以达到合烧Feed功能,在FeedBurner没被Google收购前,这个功能用起来的确很不错. Google是在2007年5月收购FeedBurner,但FeedBurner和Google的整合却花了近两年时间,前期用户切换经常莫名其妙出错,最近才解决好.但是我实在不知道如何表达

ASP.NET 生成 RSS Feed

asp.net|rss 前段时间在写RSS Feed. 经过了几次的修改,把相关的代码写成了单独的类.感觉重用时还算比较方便的.于是贴出来,大家一起研究研究.以下是RssBase.cs类:   1using System;  2using System.Collections.Generic;  3using System.Xml;  4  5namespace MyMedia.Utilities  6{  7    public class RssBase  8    {  9       

如何利用.NET Framework使用RSS feed

rss 如果想利用.NET Framework来使用RSS feed的话,这其实并不复杂.你只需要做下面几步就可以了: ◆链接到提供RSS feed的网站 ◆下载feed XML ◆将feed的XML装载到允许搜索的对象中 ◆为你想提取的结点搜索feed的XML .NET Framework提供了内置函数来完成所有的任务.我们所需要做的就是,将这些功能绑定在一起,这样我们就可以使用RSS feeds. 链接到服务器 我们可以使用WebRequest对象链接到服务器上.WebRequest对象使你

PHP读取RSS feed源的代码(带注释,可读取多个源)

因为网站需要读取不同来源的rss feed,写了一个php程序来循环读取rss feed,为了方便阅读及了解程序实现过程,加上了注释,和大家共同学习.而助易网的rss读取就是在这个程序的基础上稍做改造而成,主要是输出了一个数组字符串以及解决编码问题. php源代码及代码详细解释如下: <?php  //RSS源地址列表数组  $rssfeed = array("http://www.jzxue.com/rss/12.xml",  "http://rss.sina.com

ASP.NET生成RSS Feed

前段时间在写RSS Feed. 经过了几次的修改,把相关的代码写成了单独的类. 感觉重用时还算比较方便的.于是贴出来,大家一起研究研究. 以下是RssBase.cs类: 1using System; 2using System.Collections.Generic; 3using System.Xml; 4 5namespace MyMedia.Utilities 6{ 7 public class RssBase 8 { 9 RssBase constructor#region RssBas

可以应用到马克斯电影站生成Rss Feed的代码_应用技巧

使用方法:将下面的代码存为rss.asp(记得以UTF-8格式保存)并上传到网站根目录,剩下的工作就是找Rss提交入口去提交你的Feed地址http://你的域名/rss.asp 演示:http://www.366mv.cn  代码如下,请根据注释修改相应的信息,版权信息还望各位能够保留 ^_^  复制代码 代码如下: <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>  <%  Session.CodePage=6

[UWP]涨姿势UWP源码——RSS feed的获取和解析

原文:[UWP]涨姿势UWP源码--RSS feed的获取和解析 本篇开始具体分析涨姿势UWP这个APP的代码,首先从数据的源头着手,即RSS feed的获取和解析,相关的类为RssReader,所有和数据相关的操作均放在里面. 涨姿势网站提供的RSS feed地址为http://www.zhangzishi.cc/feed,在UWP中想要通过发送http request并从URI接受http response,最简单的方式就是使用HttpClient: public async Task<st

轻松学习jQuery插件EasyUI EasyUI创建RSS Feed阅读器_jquery

本文实例讲述了通过 jQuery EasyUI框架创建一个RSS阅读器,分享给大家供大家参考.具体如下: 运行效果截图如下: 我们将使用以下插件:layout:创建应用的用户界面.datagrid:显示 RSS Feed 列表.tree:显示 feed 频道.步骤 1:创建布局(Layout) <body class="easyui-layout"> <div region="north" border="false" clas

WordPress RSS Feed输出自定义文章类型的内容

WordPress支持RSS Feed输出,但在整站Feed源只会输出文章(post),如果你添加了自定义文章类型,需要将它们添加到WordPress的整站Feed源中.实现方法很简单,将下面的代码添加到主题的functions.php文件即可:  代码如下 复制代码 // 添加自定义文章类型到RSS Feed输出 function custom_feed_request( $vars ) {  if (isset($vars['feed']) && !isset($vars['post_