一个网友留言让我提供一个php生产rss的类 rss类下载地址:http://www.codepearl.com/files/168.html PHP 源码与演示: 源码出处演示出处 ?phprequire('rssbuilder.class.php');header('Content-Type: application/xml; charset=UTF-8');header('Cache-Control
一个网友留言让我提供一个php生产rss的类
源码与演示:源码出处 演示出处
<?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);
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号