php实现的RSS生成类实例


Posted in PHP onApril 23, 2015

本文实例讲述了php实现的RSS生成类。分享给大家供大家参考。具体如下:

class RSS
{
 var $title;
 var $link;
 var $description;
 var $language = "en-us";
 var $pubDate;
 var $items;
 var $tags;
 function RSS()
 {
  $this->items = array();
  $this->tags = array();
 }
 function addItem($item)
 {
  $this->items[] = $item;
 }
 function setPubDate($when)
 {
  if(strtotime($when) == false)
   $this->pubDate = date("D, d M Y H:i:s ", $when) . "GMT";
  else
   $this->pubDate = date("D, d M Y H:i:s ", strtotime($when)) . "GMT";
 }
 function getPubDate()
 {
  if(empty($this->pubDate))
   return date("D, d M Y H:i:s ") . "GMT";
  else
   return $this->pubDate;
 }
 function addTag($tag, $value)
 {
  $this->tags[$tag] = $value;
 }
 function out()
 {
  $out = $this->header();
  $out .= "<channel>\n";
  $out .= "<title>" . $this->title . "</title>\n";
  $out .= "<link>" . $this->link . "</link>\n";
  $out .= "<description>" . $this->description . "</description>\n";
  $out .= "<language>" . $this->language . "</language>\n";
  $out .= "<pubDate>" . $this->getPubDate() . "</pubDate>\n";
  foreach($this->tags as $key => $val) $out .= "<$key>$val</$key>\n";
  foreach($this->items as $item) $out .= $item->out();
  $out .= "</channel>\n";
  $out .= $this->footer();
  $out = str_replace("&", "&", $out);
  return $out;
 }
 function serve($contentType = "application/xml")
 {
  $xml = $this->out();
  header("Content-type: $contentType");
  echo $xml;
 }
 function header()
 {
  $out = '<?xml version="1.0" encoding="utf-8"?>' . "\n";
  $out .= '<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">' . "\n";
  return $out;
 }
 function footer()
 {
  return '</rss>';
 }
}
class RSSItem
{
 var $title;
 var $link;
 var $description;
 var $pubDate;
 var $guid;
 var $tags;
 var $attachment;
 var $length;
 var $mimetype;
 function RSSItem()
 { 
  $this->tags = array();
 }
 function setPubDate($when)
 {
  if(strtotime($when) == false)
   $this->pubDate = date("D, d M Y H:i:s ", $when) . "GMT";
  else
   $this->pubDate = date("D, d M Y H:i:s ", strtotime($when)) . "GMT";
 }
 function getPubDate()
 {
  if(empty($this->pubDate))
   return date("D, d M Y H:i:s ") . "GMT";
  else
   return $this->pubDate;
 }
 function addTag($tag, $value)
 {
  $this->tags[$tag] = $value;
 }
 function out()
 {
  $out .= "<item>\n";
  $out .= "<title>" . $this->title . "</title>\n";
  $out .= "<link>" . $this->link . "</link>\n";
  $out .= "<description>" . $this->description . "</description>\n";
  $out .= "<pubDate>" . $this->getPubDate() . "</pubDate>\n";
  if($this->attachment != "")
   $out .= "<enclosure url='{$this->attachment}' length='{$this->length}' type='{$this->mimetype}' />";
  if(empty($this->guid)) $this->guid = $this->link;
  $out .= "<guid>" . $this->guid . "</guid>\n";

  foreach($this->tags as $key => $val) $out .= "<$key>$val</$key\n>";
  $out .= "</item>\n";
  return $out;
 }
 function enclosure($url, $mimetype, $length)
 {
  $this->attachment = $url;
  $this->mimetype  = $mimetype;
  $this->length   = $length;
 }
}

使用示例如下:

$feed = new RSS();
$feed->title    = "RSS Feed Title";
$feed->link    = "http://website.com";
$feed->description = "Recent articles on your website.";
$db->query($query);
$result = $db->result;
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
  $item = new RSSItem();
  $item->title = $title;
  $item->link = $link;
  $item->setPubDate($create_date); 
  $item->description = "<![CDATA[ $html ]]>";
  $feed->addItem($item);
}
echo $feed->serve();

希望本文所述对大家的php程序设计有所帮助。

PHP 相关文章推荐
php中实现简单的ACL 完结篇
Sep 07 PHP
PHP数组排序函数合集 以及它们之间的联系分析
Jun 27 PHP
配置php网页显示各种语法错误
Sep 23 PHP
PHP遍历目录并返回统计目录大小
Jun 09 PHP
PHP产生不重复随机数的5个方法总结
Nov 12 PHP
php生成PDF格式文件并且加密
Jun 22 PHP
Thinkphp实现自动验证和自动完成
Dec 19 PHP
thinkphp整合微信支付代码分享
Nov 24 PHP
ThinkPHP框架整合微信支付之Native 扫码支付模式一图文详解
Apr 09 PHP
php实现的生成排列算法示例
Jul 25 PHP
解决laravel5中auth用户登录其他页面获取不到登录信息的问题
Oct 08 PHP
PHP7 其他语言层面的修改
Mar 09 PHP
php利用事务处理转账问题
Apr 22 #PHP
ThinkPHP文件缓存类代码分享
Apr 22 #PHP
php文件下载处理方法分析
Apr 22 #PHP
php实现用手机关闭计算机(电脑)的方法
Apr 22 #PHP
解决ThinkPHP关闭调试模式时报错的问题汇总
Apr 22 #PHP
php文件缓存类用法实例分析
Apr 22 #PHP
php实现将wav文件转换成图像文件并在页面中显示的方法
Apr 21 #PHP
You might like
php字符串截取问题
2006/11/28 PHP
PHP CKEditor 上传图片实现代码
2009/11/06 PHP
php防止恶意刷新与刷票的方法
2014/11/21 PHP
教大家制作简单的php日历
2015/11/17 PHP
PHP响应post请求上传文件的方法
2015/12/17 PHP
Laravel5.1 框架路由基础详解
2020/01/04 PHP
JAVASCRIPT IE 与 FF中兼容问题小结
2009/02/18 Javascript
基于jQuery UI CSS Framework开发Widget的经验
2010/08/21 Javascript
jquery自动填充勾选框即把勾选框打上true
2014/03/24 Javascript
javascript 内置对象及常见API详细介绍
2016/11/01 Javascript
浅谈Vue路由快照实现思路及其问题
2018/06/07 Javascript
JavaScript函数的特性与应用实践深入详解
2018/12/30 Javascript
vue2.0实现的tab标签切换效果(内容可自定义)示例
2019/02/11 Javascript
es6函数之尾调用优化实例分析
2020/04/25 Javascript
python3使用urllib示例取googletranslate(谷歌翻译)
2014/01/23 Python
Python中解析JSON并同时进行自定义编码处理实例
2015/02/08 Python
Python数据结构与算法之图的最短路径(Dijkstra算法)完整实例
2017/12/12 Python
使用Python写一个小游戏
2018/04/02 Python
python截取两个单词之间的内容方法
2018/12/25 Python
Python PyQt5 Pycharm 环境搭建及配置详解(图文教程)
2019/07/16 Python
Python动态强类型解释型语言原理解析
2020/03/25 Python
Django DRF APIView源码运行流程详解
2020/08/17 Python
html5将图片转换成base64的实例代码
2016/09/21 HTML / CSS
德国高性价比网上药店:medpex
2017/07/09 全球购物
阿根廷旅游网站:almundo阿根廷
2018/02/12 全球购物
法国一家芭蕾舞鞋公司:Repetto
2018/11/12 全球购物
应届生会计求职信
2013/11/11 职场文书
法学研究生自我鉴定范文
2013/12/04 职场文书
部队学习十八大感言
2014/01/11 职场文书
观看《永远的雷锋》心得体会
2014/03/12 职场文书
企业安全生产责任书
2014/04/14 职场文书
个人三严三实对照检查材料思想汇报
2014/09/22 职场文书
一年级数学下册复习计划
2015/01/17 职场文书
消防演习通知
2015/04/25 职场文书
大学生心理健康活动总结
2015/05/08 职场文书
2015秋季开学典礼致辞
2015/07/16 职场文书