分享
 
 
 

一个生成RSS2.0的php类(转载)

王朝php·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

http://blog.csdn.net/darasion/archive/2004/07/25/51181.aspx

<?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']."</lastBuildDate>\n";//频道内容最后的修改日期(Sat, 07 Sep 2002 09:42:31 GMT)(可选)

if(isset($channel['skipdays']))$this->channel_pre.= " <skipDays>".$channel['skipdays']."</skipDays>\n";//提示新闻聚合器,那些天它可以跳过。(可选)

if(isset($channel['copyright']))$this->channel_pre.= " <copyright>".$channel['copyright']."</copyright>\n";//频道内容的版权说明(可选)

if(isset($channel['ttl']))$this->channel_pre.= " <ttl>".$channel['ttl']."</ttl>\n";//有效期,用以指明该频道可被缓存的最长时间(可选)

$this->channel_end.= " </channel>\n";

$this->channel_end.= "</rss>\n";

}

/*生成频道图片*/

function image($image)

{

if(isset($this->str_image))unset($this->str_image);

$this->str_image.= " <image>\n";

if(isset($image['url']))$this->str_image.= " <url>".$image['url']."</url>\n";//图片的url(必备)

if(isset($image['title']))$this->str_image.= " <title>".$image['title']."</title>\n";//图片的标题,用于http的alt属性(必备)

if(isset($image['link']))$this->str_image.= " <link>".$image['link']."</link>\n";//网站的url(实际中常以频道的url代替)(必备)

if(isset($image['width']))$this->str_image.= " <width>".$image['width']."</width>\n";//图片的宽度(象素为单位)最大144,默认88(可选)

if(isset($image['height']))$this->str_image.= " <height>".$image['height']."</height>\n";//图片的高度(象素为单位)最大400,默认31(可选)

if(isset($image['description']))$this->str_image.= " <description>".$image['description']."</description>\n";//用于link的title属性(可选)

$this->str_image.= " </image>\n";

}

/*频道项*/

function item($item)

{

$this->str_item.=" <item>\n";

$this->str_item.=" <title>".$item['title']."</title>\n";//项(item)的标题(必备)

$this->str_item.=" <description>".$item['description']."</description>\n";//项的大纲(必备)

$this->str_item.=" <link>".$item['link']."</link>\n";//项的URL(必备)

if(isset($item['comments']))$this->str_item.=" <comments>".$item['comments']."</comments>\n";//该项的评论(comments)页的URL(可选)

if(isset($item['guid']))$this->str_item.=" <guid>".$item['guid']."</guid>\n";//1项的唯一标志符串(可选)

if(isset($item['author']))$this->str_item.=" <author>".$item['author']."</author>\n";//该项作者的email(可选)

if(isset($item['enclosure']))$this->str_item.=" <enclosure>".$item['enclosure']."</enclosure>\n";//描述该附带的媒体对象(可选)

if(isset($item['category']))$this->str_item.=" <category>".$item['category']."</category>\n";//包含该项的一个或几个分类(catogory)(可选)

if(isset($item['pubdate']))$this->str_item.=" <pubDate>".$item['pubdate']."</pubDate>\n";//项的发布时间(可选)

if(isset($item['source_url']))$this->str_item.=" <source url=\"".$item['source_url']."\">".$item['source_name']."</source>\n";//该项来自的RSS道(可选)

$this->str_item.=" </item>\n";

}

/*输出xml*/

function generate()

{

if(isset($this->channel_pre)&&isset($this->channel_end)&&isset($this->str_item))

{

Header("Content-type:text/xml");

echo $this->channel_pre;

echo $this->str_image;

echo $this->str_item;

echo $this->channel_end;

}

}

/*擦除频道*/

function erase_channel()

{

unset($this->channel_pre);

unset($this->channel_end);

}

/*擦除频道图片*/

function erase_image()

{

unset($this->str_image);

}

/*擦除项目*/

function erase_item()

{

unset($this->str_item);

}

/*擦除所有*/

function erase()

{

$this->erase_channel();

$this->erase_image();

$this->erase_item();

}

}

?>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有