這篇文章主要介紹了php生成rss類用法,實例分析了使用rssbuilder.class.php類文件生成rss的技巧,需要的朋友可以參考下
本文實例講述了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.49028c.com', '武林網', '一個強大的代碼分享平臺', 'http://www.49028c.com/logo.png');
- $rss->addDCdata('', 'http://www.49028c.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.49028c.com/files/list_'.$value['id'].'.html', $value['name'], 'http://www.49028c.com/files/list_'.$value['id'].'.html'. 'from=rss', $value['desc'], $value['name'], $value['start_time']);
- }
- $rss->outputRSS($ver);
- ?>
代碼中rssbuilder.class.php文件點擊此處本站下載。
希望本文所述對大家的php程序設計有所幫助。
新聞熱點
疑難解答