PHP generates RSS class usage examples, PHP generates RSS examples_PHP tutorial

WBOY
Release: 2016-07-13 09:57:20
Original
785 people have browsed it

PHP generates rss class usage examples, php generates rss class examples

The examples in this article describe the usage of php to generate rss class, and share them with you for your reference. The details are as follows:

<&#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.bkjia.com', '帮客之家', '一个强大的代码分享平台', 'http://www.bkjia.com/logo.png');
$rss->addDCdata('', 'http://www.bkjia.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.bkjia.com/files/list_'.$value['id'].'.html', $value['name'], 'http://www.bkjia.com/files/list_'.$value['id'].'.html'. 'from=rss', $value['desc'], $value['name'], $value['start_time']);
 }
 $rss->outputRSS($ver);
&#63;>
Copy after login

Click here to download the rssbuilder.class.php file in the code.

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/983999.htmlTechArticlePHP generates rss class usage examples, php generates rss class examples. This example describes the use of php to generate rss class usage, share it with everyone. For your reference. The details are as follows: phprequire('rssbuilder.class.php');he...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template