龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

一个网友留言让我提供一个php生产rss的类

时间:2014-07-22 14:48来源: 作者: 点击:
分享到:
一个网友留言让我提供一个php生产rss的类rss类下载地址:http://www.codepearl.com/files/168.html
一个网友留言让我提供一个php生产rss的类

rss类下载地址:http://www.codepearl.com/files/168.html
<?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.codepearl.com', '代码珠玑', '一个强大的代码分析平台', 'http://www.codepearl.com/logo.png');
$rss->addDCdata('', 'http://www.codepearl.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.codepearl.com/files/list_'.$value['id'].'.html', $value['name'], 'http://www.codepearl.com/files/list_'.$value['id'].'.html'. 'from=rss', $value['desc'], $value['name'], $value['start_time']);
	   
	   }
	   $rss->outputRSS($ver);
	

?>
精彩图集

赞助商链接