|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
理解动态语言的概念,运做机制,熟悉PHP语法rss <LI class=content id=pre_1152199343><?- php/**//* * @(#)Rss2Gen.inc.php (beta) 2005/2/19 * * exblog RSS2 生成类,完成了RSS2标准中的大局部内容。 * * 利用办法请见本类底部(Rss2Gen类利用正文)信息。 * * 本法式为收费法式,源代码利用者可恣意更改(请勿用于贸易用处),但请保存本版权信息! * * @author HexUzHoNG <hexuzhong@163.com> * @version beta-2, 2005-03-11 * @since exBlog-1.3.0 * */ class Rss2Gen { var $rss_header; //RSS文档头,寄存一个<rss>根元素及其version属性。 var $item; // var $items; var $channel_header; //频道的头部信息,寄存频道称号、URL、描写、言语、版权等等。 //--------------- 以下元素是可选的频道子元素 --------------// var $channel_language; //频道利用的言语品种,例如en-us、zh-cn等,放便会萃器组织中一言语的站点。 var $channel_copyright; //频道内容的版权声明。 var $channel_managingEditor; //对该频道内容担任的团体的Email地址 var $channel_webMaster; //对该频道的手艺撑持担任的团体的Email地址 var $channel_pubDate; //该频道内容的发布日期 var $channel_lastBuildDate; //前次频道内容更改的工夫 var $channel_category; //申明频道属于哪个或多个分类 var $channel_generator = "<generator>exblog RSS2 builder</generator>"; //用于生成该频道的法式 var $channel_docs; //RSS文件所利用格局的申明文档地点的URL var $channel_cloud; //答应历程注册为“cloud”,频道更新时告诉它 var $channel_ttl; //ttl 代表存活工夫,存活工夫是一个数字,暗示提纲在刷新之前缓冲的分钟数 var $channel_image; //指定一个能在频道中显示的GIF、JPEG 或PNG 图象 //var $channel_rating; //关于该频道的 PICS 评价 //var $channel_textInput; //界说可与频道一同显示的输出框 //var $channel_skipHours; //告知会萃器哪些小时的更新可以疏忽 //var $channel_skipDays; //告知会萃器那一天的更新可以疏忽 var $channel; //全部rss2文档信息,用与生成全部页面。 var $halt_on_error = true; /**//** * 机关函数,其参数皆为rss2必需的频道子元素,假如不填,则为默许内容。 * * @param String $title 频道的称号,频道的title应当和web站点的title尽可能分歧。 * @param String $link 与该频道联系关系的web站点的URL。 * @param String $description 对频道的一段复杂描写,如引见频道是做甚么的。 * @access public */ function Rss2Gen() { $this->fillHeader(); } /**//** * 生成RSS文档头,必需以一个<rss>元素作为根元素,其有一个强迫属性version,指定以后文档恪守的RSS版本。 * @access private */ function fillHeader() { $this->rss_header = "
复制代码 <?xml version="1.0" encoding="gb2312"?>
- rn"; $this->rss_header .= " <rss version="2.0">rn"; } /**//** * 设置频道头,个中三个元素为必需的。 * @param String $title 频道的称号,频道的title应当和Web站点的title尽可能分歧。 * @param String $link 与该频道联系关系的Web站点或站点区域的URL。 * @param String $description 对频道的一段复杂描写,扼要引见频道是做甚么的。 */ function setChannel($title = "exblog", $link = "http://www.exblog.org", $description = "exblog") { $this->channel_header = " <title><![CDATA[".$title."]]></title>n"; $this->channel_header .= " <link>".$link."</link>rn"; $this->channel_header .= " <description><![CDATA[".$description."]]></description>rn"; } function halt($msg) { if ($this->halt_on_error) { $this->haltmsg($msg); } die("exblog RSS2 exit"); } function haltmsg($msg) { sprintf("<b>exblog RSS2 builder ERROR: %s</b><br>rn", $msg); } /**//** * 设置该RSS文档的言语,默许为简体中文。 * @access public */ function setLanguage($lang = "zh_cn") { $this->channel_language = " <language>".$lang."</language>rn"; } /**//** * 频道内容的版权声明 * @access public */ function setCopyright($copyright = "exblog") { $this->channel_copyright = " <copyright>".$copyright."</copyright>rn"; } /**//** * 对该频道内容担任的团体的Email地址 * @access public */ function setManagingEditor($email = NULL) { if (empty($email)) { $this->halt("假如你设置了该频道内容担任的团体的Email地址,请填写她。"); } $this->channel_managingEditor = " <managingEditor>".$email."</managingEditor>rn"; } /**//** * 对该频道的手艺撑持担任的团体的Email地址 * @access public */ function setWebMaster($email = NULL) { if (empty($email)) { $this->halt("假如你设置了该频道的手艺撑持担任的团体的Email地址,请填写她。 :)"); } $this->channel_webMaster = " <webMaster>".$email."</webMaster>rn"; } /**//** * 该频道内容的发布日期。 * @access public */ function setPubDate($date = NULL) { if (empty($date)) { $date = date("Y/m/d"); $this->channel_pubDate = " <pubDate>".$date."</pubDate>rn"; } $this->channel_pubDate = " <pubDate>".$date."</pubDate>rn"; } /**//** * 前次频道内容更改的工夫 * @access public */ function setLastBuildDate($date = NULL) { if (empty($date)) { $date = date("Y/m/d"); $this->channel_lastBuildDate = " <lastBuildDate>".$date."</lastBuildDate>rn"; } $this->channel_lastBuildDate = " <lastBuildDate>".$date."</lastBuildDate>rn"; } /**//** * 申明频道属于哪个或多个分类 * @access public */ function setCategory($category) { $this->channel_category = " <category>".$category."</category>rn"; } /**//** * RSS文件所利用格局的申明文档地点的URL * @access public */ function setDocs($url) { $this->channel_docs = " <docs>".$url."</docs>rn"; } /**//** * ttl 代表存活工夫,存活工夫是一个数字,暗示提纲在刷新之前缓冲的分钟数 * @access public */ function setTtl($minute) { $this->channel_ttl = " <ttl>".$minute."</ttl>rn"; } /**//** * 指定一个能在频道中显示的GIF、JPEG 或PNG 图象 * * @param String $url 必须,是暗示该频道的 GIF、JPEG 或 PNG 图象的URL * @param String $title 必须,是图像的描写。当频道以 HTML 出现时,用作 HTML <image> 标签的 ALT 属性。 * @param String $link 必须,是站点的 URL。假如频道以 HTML 出现,该图象作为到这个站点的链接。 * @param Integer $width 暗示图像的像素宽,必需和 $height 一同设置,不然不会显示此属性。 * @param Integer $height 暗示图像的像素高,必需和 $width 一同设置,不然不会显示此属性。 * @param String $description 环绕着该图象构成的链接元素的 title 属性。 * * @access public */ function setChannelImage($url, $title, $link, $width = NULL, $height = NULL, $description = NULL) { if (!isset($url)) $this->halt("假如你要设置图片,该图象地址属性必需填写。"); if (!isset($title)) $this->halt("假如你要设置图片,该图象描写属性必需填写。"); if (!isset($link)) $this->halt("假如你要设置图片,该图象链接属性必需填写。这个URL普通和图象地址属性不异"); $this->channel_image = " <image>rn"; $this->channel_image .= " <url>".$url."</url>rn"; $this->channel_image .= " <title><![CDATA[".$title."]]></title>rn"; $this->channel_image .= " <link>".$link."</link>rn"; //假如设置了图象宽、高则添加此属性。 if (!empty($width) && !empty($height)) { $this->channel_image .= " <width>".$width."</width>rn"; $this->channel_image .= " <height>".$height."</height>rn"; } if (!empty($description)) $this->channel_image .= " <description><![CDATA[".$description."]]></description>rn"; $this->channel_image .= "</image>rn"; } /**//** * 添加一条item到channel中,固然item的子元素都是可选的,但最少要存在一个title或description * * @param String $title 项(item)的题目 * @param String $description 项(item)的纲目 * @param String $link 项(item)的URL * @param String $author 项(item)作者的Email 地址 * @param String $category 包含项(item)的一个或多个分类 * @param String $comments 关于项(item)的正文页的URL * @param String $enclosure 撑持和该项(item)有关的媒体对象 * @param String $guid 独一与该项(item)接洽在一同的永世性链接 * @param String $pubDate 该项(item)是甚么时分宣布的 * @param String $Source 该项(item)来自哪一个RSS 频道,当把项(item)聚合在一同时十分有效 * * @access public */ function addItem($title = NULL, $description = NULL, $link = NULL, $author = NULL, $category = NULL, $comments = NULL, $enclosure = NULL, $guid = NULL, $pubDate = NULL, $source = NULL) { //判别是不是最少添加了title或description if (empty($title) && empty($description)) { $this->halt("item:请最少设置title或description属性。"); } else { $this->item = " <item>rn"; if (!empty($title)) $this->item .= " <title><![CDATA[".$title."]]></title>rn"; if (!empty($link)) $this->item .= " <link>".$link."</link>rn"; if (!empty($description)) $this->item .= " <description><![CDATA[".$description."]]></description>rn"; if (!empty($author)) $this->item .= " <author><![CDATA[".$author."]]></author>rn"; if (!empty($category)) $this->item .= " <category><![CDATA[".$category."]]></category>rn"; if (!empty($comments)) $this->item .= " <comments><![CDATA[".$comments."]]></comments>rn"; if (!empty($enclosure)) $this->item .= " <enclosure><![CDATA[".$enclosure."]]></enclosure>rn"; if (!empty($guid)) $this->item .= " <guid>".$guid."</guid>rn"; if (!empty($pubDate)) $this->item .= " <pubDate>".$pubDate."</pubDate>rn"; if (!empty($source)) $this->item .= " <source><![CDATA[".$source."]]></source>rn"; $this->item .= "</item>rn"; } $this->items .= $this->item; } /**//** * 输入 rss2 文档 */ function builder() { $this->stuff(); header("Content-type:application/xml"); print $this->channel; } /**//** * 兼容老版本rss生成办法,去失落了写文件功效。 * */ function buildRssFeed($param = NULL) { $this->builder(); } /**//** * 分解全部RSS2文档 * */ function stuff() { $this->channel = $this->rss_header; $this->channel .= $this->channel_header; if (isset($this->channel_language)) $this->channel .= $this->channel_language; if (isset($this->channel_copyright)) $this->channel .= $this->channel_copyright; if (isset($this->channel_managingEditor)) $this->channel .= $this->channel_managingEditor; if (isset($this->channel_webMaster)) $this->channel .= $this->channel_webMaster; if (isset($this->channel_pubDate)) $this->channel .= $this->channel_pubDate; if (isset($this->channel_lastBuildDate)) $this->channel .= $this->channel_lastBuildDate; if (isset($this->channel_category)) $this->channel .= $this->channel_category; if (isset($this->channel_docs)) $this->channel .= $this->channel_docs; if (isset($this->channel_cloud)) $this->channel .= $this->channel_cloud; if (isset($this->channel_ttl)) $this->channel .= $this->channel_ttl; if (isset($this->channel_image)) $this->channel .= $this->channel_image; $this->channel .= $this->channel_generator; $this->channel .= $this->items; $this->channel .= "</rss>rn"; } } /**//******************************* Rss2Gen 类利用正文 *******************/ /**//* $rss2gen = new Rss2Gen(); $rss2gen->setChannel("exblog222rss", "http://elliott.fengling.net", "elliott rss2gen"); //以下局部为可添加信息 //$rss2gen->setLanguage("zh-cn"); //$rss2gen->setCopyright("exblog @"); //$rss2gen->setManagingEditor("elliott_hee@163.com"); //$rss2gen->setWebMaster("elliott@yeah.net"); //$rss2gen->setPubDate(); //$rss2gen->setLastBuildDate(); //$rss2gen->setCategory("none"); //$rss2gen->setDocs("http://www.exblog.org/rss_docs.html"); //$rss2gen->setTtl(600); //$rss2gen->setChannelImage("/XrssFile/2006-9/24/200692413947513.gif", "demo~~ :)", "http://www.exblog.org"); //------------------------ //---添加一笔记录到rss文档中,最少需求一个参数,title或description $rss2gen->addItem("item1", "item1's description", "http://www.exblog.org/?play=1", "elliott", "默许分类", "描写呀描写。", "撑持和该项(item)有关的媒体对象", "独一与该项(item)接洽在一同的永世性链接", "2005-03-12", "该项(item)来自哪一个RSS 频道,当把项(item)聚合在一同时十分有效"); $rss2gen->addItem("item2", "item2's description"); $rss2gen->addItem("item3"); $rss2gen->builder(); //兼容老版本中办法 //$rss2gen->buildRssFeed(); */
复制代码 实现固定数量的几张图片的上传;再如调试软件ZendStudio的使用,看了很多次老师的应用,但总感觉用的不顺手,不懂那么多的数据值,到底哪一个才是真正的问题所在;还有如数据库语句的封装,我只会用简单的函数来进行封装。 |
|