日期:2013-05-24 浏览次数:20457 次
<?php
/*****************************************
* RSS2.0 Generator
* Create by MagicBoy(darasion)
* Copyright ? 神奇男孩
******************************************/
/*————————————————
使用方法:
将下面的数组,带入相应的函数。
1、频道主体
$channel = array(
title => '频道名称(必备)',
link => '频道的URL(必备)',
description => '频道的描述(必备)',
language => '频道文章所用语言(可选)',
webmaster => '负责频道技术事务的网站管理员email(可选)',
managingEditor => '责任编辑的email(可选)',
pubDate => '频道内容发布日期,格式遵循RFC822格式(年份可为2位或4位)(可选)',
lastBuildDate => '频道内容最后的修改日期(Sat, 07 Sep 2002 09:42:31 GMT)(可选)',
skipDays => '提示新闻聚合器,那些天它可以跳过。(可选)',
copyright => '频道内容的版权说明(可选)',
ttl => '有效期,用以指明该频道可被缓存的最长时间(可选)',
);
2、频道图片
$image = array(
url => '图片的链接(必备)',
title => '图片的标题,用于http的alt属性(必备)',
link => '网站的url(实际中常以频道的url代替)(必备)',
width => '图片的宽度(象素为单位)最大144,默认88(可选)',
height => '图片的高度(象素为单位)最大400,默认31(可选)',
description => '用于link的title属性(可选)'
);
3、频道项
$item = array(
title => '项(item)的标题(必备)',
description => '项的大纲(必备)',
link => '项的URL(必备)',
comments => '该项的评论(comments)页的URL(可选)',
guid => '1项的唯一标志符串(可选)',
author => '该项作者的email(可选)',
enclosure => '描述该附带的媒体对象(可选)',
category => '包含该项的一个或几个分类(catogory)(可选)',
pubdate => '项的发布时间(可选)',
source_url => '该项来自的RSS道(可选)',
source_name => '该项来自的RSS道(可选)'
);
————————————————*/
class rss2
{
var $channel_pre="";
var $str_image="";
var $str_item="";
var $channel_end="";
/*构造函数*/
function rss2($channel,$encoding="GB2312")
{
$this->channel($channel,$encoding);
}
/*生成频道主体*/
function channel($channel,$encoding="GB2312")
{
$this->channel_pre.="<?xml version=\"1.0\" encoding=\"$encoding\"?>\n";
$this->channel_pre.= "<rss version=\"2.0\">\n";
$this->channel_pre.= " <channel>\n";
$this->channel_pre.= " <title>".$channel['title']."</title>\n";//频道名称(必备)
$this->channel_pre.= " <link>".$channel['link']."</link>\n";//频道的URL(必备)
$this->channel_pre.= " <description>".$channel['description']."</description>\n";//频道的描述(必备)
$this->channel_pre.= " <generator>MagicBoy RSS Generator v1.0</generator>\n";//创建此文档的程序(可选)
if(isset($channel['language']))$this->channel_pre.= " <language>".$channel['language']."</language>\n";//频道文章所用语言(可选)
if(isset($channel['webmaster']))$this->channel_pre.= " <webMaster>".$channel['webmaster']."</webMaster>\n";//负责频道技术事务的网站管理员email(可选)
if(isset($channel['managingeditor']))$this->channel_pre.= " <managingEditor>".$channel['managingeditor']."</managingEditor>\n";//责任编辑的email(可选)
if(isset($channel['pubdate']))$this->channel_pre.= " <pubDate>".$channel['pubdate']."</pubDate>\n";//频道内容发布日期,格式遵循RFC822格式(年份可为2位或4位)(可选)
if(isset($channel['lastbuilddate']))$this->channel_pre.= " <lastBuildDate>".$channel['lastbuilddate']."</la