六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

php 生成RSS文件類(lèi)案例代碼

[摘要]RSS(簡(jiǎn)易信息聚合):是一種消息來(lái)源格式規(guī)范,用以發(fā)布經(jīng)常更新數(shù)據(jù)的網(wǎng)站,例如博客文章、新聞、音頻或視頻的網(wǎng)摘。RSS文件(或稱(chēng)做摘要、網(wǎng)絡(luò)摘要、或頻更新,提供到頻道)包含了全文或是節(jié)錄的文字,再...
RSS(簡(jiǎn)易信息聚合):是一種消息來(lái)源格式規(guī)范,用以發(fā)布經(jīng)常更新數(shù)據(jù)的網(wǎng)站,例如博客文章、新聞、音頻視頻的網(wǎng)摘。RSS文件(或稱(chēng)做摘要、網(wǎng)絡(luò)摘要、或頻更新,提供到頻道)包含了全文或是節(jié)錄的文字,再加上發(fā)用者所訂閱之網(wǎng)摘布數(shù)據(jù)和授權(quán)的元數(shù)據(jù)。網(wǎng)絡(luò)摘要能夠使發(fā)行者自動(dòng)地發(fā)布他們的數(shù)據(jù),同時(shí)也使讀者能更夠定期更新他們喜歡的網(wǎng)站或是聚合不同網(wǎng)站的網(wǎng)摘。RSS摘要可以借由RSS閱讀器、feed reader或是aggregator等網(wǎng)頁(yè)或以桌面為架構(gòu)的軟件來(lái)閱讀。標(biāo)準(zhǔn)的XML檔式可允許信息在一次發(fā)布后通過(guò)不同的程序閱覽。用戶(hù)借由將網(wǎng)摘輸入RSS閱讀器或是用鼠標(biāo)點(diǎn)取瀏覽器上指向訂閱程序的RSS小圖標(biāo)之URI(非通常稱(chēng)為URL)來(lái)訂閱網(wǎng)摘。RSS閱讀器定期檢閱是否有更新,然后下載給監(jiān)看用戶(hù)界面。

RSS可以是以下三種解釋中任一種的縮寫(xiě),但其實(shí)這三者都是指同一種聯(lián)合供稿(Syndication)的技術(shù):

這篇文章主要介紹了PHP生成RSS文件類(lèi),可實(shí)現(xiàn)PHP生成RSS文件的功能,對(duì)于網(wǎng)站建設(shè)與優(yōu)化來(lái)說(shuō)具有一定的實(shí)用價(jià)值,需要的朋友可以參考下

PHP RSS 生成類(lèi)實(shí)例代碼如下:

代碼如下:

<?php 
if (defined('_class_rss_php')) return; 
define('_class_rss_php教程',1); 

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('titile' => $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 (!emptyempty($this->copyright)) { 
          $s .= "{$this->copyright} "; 
       } 
       if (!emptyempty($this->webmaster)) { 
          $s .= "{$this->webmaster} "; 
       } 
       if (!emptyempty($this->pubdate)) { 
          $s .= "{$this->pubdate} "; 
       } 
 
       if (!emptyempty($this->lastbuilddate)) { 
          $s .= "{$this->lastbuilddate} "; 
       } 
 
       if (!emptyempty($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 channel 
      $s .= " "; 
      $this->content = $s; 
   } 
 
   function show() { 
       if (emptyempty($this->content)) $this->buildrss(); 
       header('content-type:text/xml'); 
       echo($this->content); 
   } 
 
   function savetofile($fname) { 
       if (emptyempty($this->content)) $this->buildrss(); 
       $handle = fopen($fname, 'wb'); 
       if ($handle === false)  return false; 
       fwrite($handle, $this->content); 
       fclose($handle); 
   } 
} 
?>

以上就是php 生成RSS文件類(lèi)實(shí)例代碼的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門(mén)到精通的SQL知識(shí)。




主站蜘蛛池模板: 中文字幕天堂网 | 亚洲精品乱码久久久久久麻豆 | 日韩成人毛片高清视频免费看 | 日本在线观看免费高清 | 手机在线看片国产 | 亚洲国产欧美在线 | 中国国产一级毛片视频 | 亚洲免费mv | 日本美女一级视频 | 丝袜美腿亚洲一区二区图片 | 日本三级香港三级三级人!妇久 | 一级片黄色免费 | 午夜在线免费视频 | 青草社区视频 | 上色天天综合网 | 综合久久久久久 | 特黄特黄一级片 | 中文字幕第一页在线播放 | 最新国产视频 | 日韩一级在线 | 色悠久久久久综合网伊人男男 | 婷婷开心| 天堂最新资源在线 | 日韩欧美不卡 | 亚洲美女在线播放 | 日韩欧美在线观看综合网另类 | 色哟哟色院91精品网站 | 午夜性爽快免费视频播放 | 亚洲精品福利在线观看 | 亚洲高清色 | 亚洲色啦啦狠狠网站 | 小xav导航福利网址 香蕉中文在线 | 日韩欧美国产一区二区三区 | 亚洲福利视频一区二区 | 日韩综合在线视频 | 天天狠狠色噜噜 | 中文字幕一区二区三区四区五区人 | 日韩欧美高清 | 婷婷综合久久中文字幕一本 | 青青久久久国产线免观 | 日本综合色 |