Home >Backend Development >PHP Tutorial >php生成rss类用法实例_PHP

php生成rss类用法实例_PHP

WBOY
WBOYOriginal
2016-05-29 11:52:18848browse

本文实例讲述了php生成rss类用法,分享给大家供大家参考。具体如下:

<&#63;php
require('rssbuilder.class.php');
header('Content-Type: application/xml; charset=UTF-8');
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Fri, 14 Mar 1980 20:53:00 GMT');
header('Last-Modified: ' . date('r'));
header('Pragma: no-cache');
$rss = new RSSBuilder('utf-8', 'http://www.bitsCN.com', '', '一个强大的代码分享平台', 'http://www.bitsCN.com/logo.png');
$rss->addDCdata('', 'http://www.bitsCN.com', date('r'));
 $data = array(
    array(
   'id'=>1,
   'name'=>'php',
   'desc'=>'php分享频道',
   'start_time'=>'2013-11-17'
    ),
    array(
   'id'=>17,
   'name'=>'jquery',
   'desc'=>'jquery分享频道',
   'start_time'=>'2013-11-17'
    )
 );
 foreach($data as $key=>$value)
 {
  $rss->addItem('http://www.bitsCN.com/files/list_'.$value['id'].'.html', $value['name'], 'http://www.bitsCN.com/files/list_'.$value['id'].'.html'. 'from=rss', $value['desc'], $value['name'], $value['start_time']);
 }
 $rss->outputRSS($ver);
&#63;>

代码中rssbuilder.class.php文件点击此处本站下载。

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn