贴心
全国7×24小时客服热线
安全
病毒杀除率高于99%
稳定
网站可用性高于99.9%
实力
服务68家上市企业及集团公司
点击数:10932015-07-16 15:34:03 来源: 外贸网站建设,深圳外贸网站建设,深圳网站建设,外贸商城网站制作-亿恩科技
RSS订阅功能,在很多网站都可以有但也有很多,下面代码是自己写的,其中使用到了一个PHP类:RSS.class.php,感觉非常方便,不敢独享,特拿出来跟大家分享.
类的调用代码如下:
- include_once("class/RSS.class.php");//引入RSS PHP类
- $RSS= new RSS("名称","地址","描述","RSS频道图标");
- $RSS->AddItem("日志的标题","日志的地址","日志的摘要","日志的发布日期");
- $RSS->Display();//输出RSS内容
全部代码如下:
- <?php
- // +----------------------------------------------------------------------
- // | YBlog
- // +----------------------------------------------------------------------
- // | Copyright (c) 2008 http://www.111cn.net/nokia/n97/ All rights reserved.
- // +----------------------------------------------------------------------
- // +----------------------------------------------------------------------
- // | Author: yhustc <yhustc@gmail.com>
- // +----------------------------------------------------------------------
- // $Id$
- /**
- +------------------------------------------------------------------------------
- * RSS生成类
- +------------------------------------------------------------------------------
- * @author yhustc <yhustc@gmail.com>
- * @version $Id$
- +------------------------------------------------------------------------------
- */
- class RSS
- {
- /**
- +----------------------------------------------------------
- * RSS频道名
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $channel_title = '';
- /**
- +----------------------------------------------------------
- * RSS频道链接
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $channel_link = '';
- /**
- +----------------------------------------------------------
- * RSS频道描述
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $channel_description = '';
- /**
- +----------------------------------------------------------
- * RSS频道使用的小图标的URL
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $channel_imgurl = '';
- /**
- +----------------------------------------------------------
- * RSS频道所使用的语言
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $language = 'zh_CN';
- /**
- +----------------------------------------------------------
- * RSS文档创建日期,默认为今天
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $pubDate = '';
- protected $lastBuildDate = '';
- protected $generator = 'YBlog RSS Generator';
- /**
- +----------------------------------------------------------
- * RSS单条信息的数组
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- protected $items = array();
- /**
- +----------------------------------------------------------
- * 构造函数
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $title RSS频道名
- * @param string $link RSS频道链接
- * @param string $description RSS频道描述
- * @param string $imgurl RSS频道图标
- +----------------------------------------------------------