Home > php教程 > php手册 > php生成rss类用法实例

php生成rss类用法实例

WBOY
Release: 2016-06-06 20:04:51
Original
1526 people have browsed it

这篇文章主要介绍了php生成rss类用法,实例分析了使用rssbuilder.class.php类文件生成rss的技巧,需要的朋友可以参考下

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

addDCdata('', 'http://www.jb51.net', 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.jb51.net/files/list_'.$value['id'].'.html', $value['name'], 'http://www.jb51.net/files/list_'.$value['id'].'.html'. 'from=rss', $value['desc'], $value['name'], $value['start_time']); } $rss->outputRSS($ver); ?>

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

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template