php 生成RSS文件类实例代码

rss(简易信息聚合):是一种消息来源格式规范,用以发布经常更新数据的网站,例如博客文章、新闻、音频音频的网摘。rss文件(或称做音频、网络摘要、或频更新,提供到频道)包含了全文或是节录的文字,再加上发用者所订阅之网摘布数据和授权的元数据。网络摘要能够使发行者自动地发布他们的数据,同时也使读者能更够定期更新他们喜欢的网站或是聚合不同网站的网摘。rss摘要可以借由rss阅读器、feed reader或是aggregator等网页或以桌面为音频的软件来阅读。标准的xml档式可允许信息在一次发布后通过不同的程序阅览。用户借由将网摘输入rss阅读器或是用鼠标点取浏览器上指向订阅程序的rss小图标之uri(非通常称为url)来订阅网摘。rss阅读器定期检阅是否有更新,然后下载给监看用户界面。

RSS可以是以下三种解释中任一种的缩写,但其实这三者都是指同一种联合供稿(Syndication)的技术:

这篇文章主要介绍了PHP生成RSS文件类,可实现PHP生成RSS文件的功能,对于网站建设与优化来说具有一定的实用价值,需要的朋友可以参考下

PHP RSS 生成类实例代码如下:

 代码如下:

<?php    if (defined(&#39;_class_rss_php&#39;)) return;   define(&#39;_class_rss_php教程&#39;,1);     class rss {      //public      $rss_ver = "2.0";      $channel_title = &#39;&#39;;      $channel_link = &#39;&#39;;      $channel_description = &#39;&#39;;      $language = &#39;zh_cn&#39;;      $copyright = &#39;&#39;;      $webmaster = &#39;&#39;;      $pubdate = &#39;&#39;;      $lastbuilddate = &#39;&#39;;      $generator = &#39;redfox rss generator&#39;;         $content = &#39;&#39;;      $items = array();         function rss($title, $link, $description) {          $this->channel_title = $title;          $this-&gt;channel_link = $link;          $this-&gt;channel_description = $description;          $this-&gt;pubdate = date('y-m-d h:i:s',time());          $this-&gt;lastbuilddate = date('y-m-d h:i:s',time());      }         function additem($title, $link, $description ,$pubdate) {          $this-&gt;items[] = array('titile' =&gt; $title ,                           'link' =&gt; $link,                           'description' =&gt; $description,                           'pubdate' =&gt; $pubdate);      }         function buildrss() {          $s = "<!--l version="1.0" encoding="gb2312"--> ";          // start channel          $s .= " ";          $s .= " "          $s .= "<link>{$this-&gt;channel_link} ";          $s .= "{$this-&gt;channel_description} ";          $s .= "{$this-&gt;language} ";          if (!emptyempty($this-&gt;copyright)) {             $s .= "{$this-&gt;copyright} ";          }          if (!emptyempty($this-&gt;webmaster)) {             $s .= "{$this-&gt;webmaster} ";          }          if (!emptyempty($this-&gt;pubdate)) {             $s .= "{$this-&gt;pubdate} ";          }             if (!emptyempty($this-&gt;lastbuilddate)) {             $s .= "{$this-&gt;lastbuilddate} ";          }             if (!emptyempty($this-&gt;generator)) {             $s .= "{$this-&gt;generator} ";          }                   // start items          for ($i=0;$iitems),$i++) {              $s .= " ";              $s .= " ";              $s .= "<link>{$this-&gt;items[$i]['link']} ";              $s .= "<!--data[{$thi-->items[$i]['description']}]]&gt; ";              $s .= "{$this-&gt;items[$i]['pubdate']} ";                        $s .= " ";          }                 // close channel         $s .= " ";         $this-&gt;content = $s;      }         function show() {          if (emptyempty($this-&gt;content)) $this-&gt;buildrss();          header('content-type:text/xml');          echo($this-&gt;content);      }         function savetofile($fname) {          if (emptyempty($this-&gt;content)) $this-&gt;buildrss();          $handle = fopen($fname, 'wb');          if ($handle === false)  return false;          fwrite($handle, $this-&gt;content);          fclose($handle);      }   }   ?&gt;

© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享