Php rss generation class

Source: Internet
Author: User

<?
If (defined ('_ class_rss_php tutorial') return;
Define ('_ class_rss_php tutorial', 1 );
/**
 
* Instructions:
* $ Rss = new rss ('redfox', 'http: // 111cn.net/', "redfox's blog ");
* $ Rss-> additem ('RSS class', "http://www.111cn.net", "xxx", date ());
* $ Rss-> additem (...);
* $ Rss-> savetofile (...);
*/

 

The code is as follows: Copy code

Class rss {
// Public
$ Rss_ver = "2.0 ";
$ Channel_title = '';
$ Channel_link = '';
$ Channel_description = '';
$ Language = 'zh _ cn ';
$ Copyright = '';
$ Webmaster = '';
$ Pubdate = '';
$ Lastbuilddate = '';
$ Generator = 'redfox rss generator ';


$ Content = '';
$ Items = array ();


Function rss ($ title, $ link, $ description ){
$ This-> channel_title = $ title;
$ This-> channel_link = $ link;
$ This-> channel_description = $ description;
$ This-> pubdate = date ('Y-m-d h: I: S', time ());
$ This-> lastbuilddate = date ('Y-m-d h: I: S', time ());
   }


Function additem ($ title, $ link, $ description, $ pubdate ){
$ This-> items [] = array ('tile' => $ title,
'Link' => $ link,
'Description' => $ description,
'Pubdate' => $ pubdate );
   }


Function buildrss (){
$ S = "<! -- L version = "1.0" encoding = "gb2312" --> ";
// Start channel
$ S. = "";
$ S. = ""
$ S. = "<link/>{$ this-> channel_link }";
$ S. = "{$ this-> channel_description }";
$ S. = "{$ this-> language }";
If (! Empty ($ this-> copyright )){
$ S. = "{$ this-> copyright }";
       }
If (! Empty ($ this-> webmaster )){
$ S. = "{$ this-> webmaster }";
       }
If (! Empty ($ this-> pubdate )){
$ S. = "{$ this-> pubdate }";
       }


If (! Empty ($ this-> lastbuilddate )){
$ S. = "{$ this-> lastbuilddate }";
       }


If (! Empty ($ this-> generator )){
$ S. = "{$ this-> generator }";
       }
     
// Start items
For ($ I = 0; $ iitems), $ I ++ ){
$ S. = "";
$ S. = "";
$ S. = "<link/>{$ this-> items [$ I] ['link']}";
$ S. = "<! -- Data [{$ thi --> items [$ I] ['description']}]> ";
$ S. = "{$ this-> items [$ I] ['pubdate']}";
$ S. = "";
       }
    
// Close the channel
$ S. = "";
$ This-> content = $ s;
   }


Function show (){
If (empty ($ this-> content) $ this-> buildrss ();
Header ('content-type: text/XML ');
Echo ($ this-> content );
   }


Function savetofile ($ fname ){
If (empty ($ this-> content) $ this-> buildrss ();
$ Handle = fopen ($ fname, 'wb ');
If ($ handle = false) return false;
Fwrite ($ handle, $ this-> content );
Fclose ($ handle );
   }
}


?>
You can also use webpage special effects to parse xml documents.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.