仓酷云

标题: PHP网站制作之一个生成RSS2.0的php类 [打印本页]

作者: 蒙在股里    时间: 2015-2-4 00:13
标题: PHP网站制作之一个生成RSS2.0的php类
左手拿着MOTOLOLA右手拿着NOKIA,要多潇洒,有多潇洒,哈哈,终于学会了,但是可能这个时候,又会有人不经意的拍拍肩膀对你说:哥们,别高兴的太早,你还是菜鸟,离学会还差着一大截呢!rss   <?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();
}
}
?>


PHP于1994年由Rasmus Lerdorf创建,刚刚开始是Rasmus Lerdorf为了要维护个人网页而制作的一个简单的用Perl语言编写的程序。
作者: 仓酷云    时间: 2015-2-4 10:01
我学习了一段时间后,我发现效果并不好(估计是我自身的问题)。因为一个人的精力总是有限的,同时学习这么多,会导致每个的学习时间都得不到保证。
作者: 透明    时间: 2015-2-5 22:35
首先声明:我是一个菜鸟,是一个初学者。学习了一段php后总是感觉自己没有提高,无奈。经过反思我认为我学习过程中存在很多问题,我改变了学习方法后自我感觉有了明显的进步。
作者: 冷月葬花魂    时间: 2015-2-6 00:33
建议加几个专业的phper的群,当然啦需要说话的人多,一处一点问题能有人回答你的,当然啦要让人回答你的问题,平时就得躲在里面聊天,大家混熟啦,愿意回答你问题的人自然就多啦。
作者: 简单生活    时间: 2015-2-13 00:56
先学习php和mysql,还有css(html语言很简单)我认为现在的效果比以前的方法好。
作者: 山那边是海    时间: 2015-2-21 20:04
其实没啥难的,多练习,练习写程序,真正的实践比看100遍都有用。不过要熟悉引擎
作者: 飘飘悠悠    时间: 2015-3-5 13:52
遇到出错的时候,我经常把错误信息直接复制到 google的搜索栏,一般情况都是能搜到结果的,不过有时候会搜出来一大片英文的出来,这时候就得过滤一下,吧中文的弄出来,挨着式方法。
作者: 活着的死人    时间: 2015-3-12 07:45
小鸟是第一次发帖(我习惯潜水的(*^__^*) 嘻嘻……),有错误之处还请大家批评指正,另外,前些日子听人说有高手能用php写驱动程序,真是学无止境,人外有人,天外有天。
作者: 爱飞    时间: 2015-3-15 09:31
实践是检验自己会不会的真理。
作者: 愤怒的大鸟    时间: 2015-3-15 19:40
这些中手常用的知识,当你把我说的这些关键字都可以熟练运用的时候,你可以选择自己
作者: 金色的骷髅    时间: 2015-3-22 03:10
因为blog这样的可以让你接触更多要学的知识,可以接触用到类,模板,js ,ajax
作者: 分手快乐    时间: 2015-3-25 02:34
php是动态网站开发的优秀语言,在学习的时候万万不能冒进。在系统的学习前,我认为不应该只是追求实现某种效果,因为即使你复制他人的代码调试成功,实现了你所期望的效果,你也不了解其中的原理。
作者: 只想知道    时间: 2015-3-27 09:09
Ps:以上纯属原创,如有雷同,纯属巧合
作者: 不帅    时间: 2015-4-1 04:42
在学习的过程中不能怕麻烦,不能有懒惰的思想。学习php首先应该搭建一个lamp环境或者是wamp环境。这是学习php开发的根本。虽然网络上有很多集成的环境,安装很方便,使用起来也很稳定、
作者: 莫相离    时间: 2015-4-11 13:04
真正的方向了,如果将来要去开发团队,你一定要学好smarty ,phplib这样的模板引擎,
作者: 小魔女    时间: 2015-4-14 18:21
你很难利用原理去编写自己的代码。对于php来说,系统的学习我认为还是很重要的,当你有一定理解后,你可你针对某种效果研究,我想那时你不会只是复制代码的水平了。
作者: 海妖    时间: 2015-4-17 04:31
如果你可以写完像留言板这样的程序,那么你可以去一些别人的代码了,
作者: 小妖女    时间: 2015-5-2 02:17
在我安装pear包的时候老是提示,缺少某某文件,才发现 那群extension 的排列是应该有一点的顺序,而我安装的版本的排序不是正常的排序。没办法我只好把那群冒号加了上去,只留下我需要使用的扩展。
作者: 灵魂腐蚀    时间: 2015-5-4 00:23
要进行开发,搭建环境是首先需要做的事,windows下面我习惯把环境那个安装在C盘下面,因为我配的环境经常出现诡异事件,什么事都没做环境有的时候就不能用啦。




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2