搜尋
首頁php教程PHP源码PHP 生成RSS 类

PHP 生成RSS 类

May 25, 2016 pm 05:15 PM


channel_title = $title;
        $this->channel_link = $link;
        $this->channel_description = $description;
        $this->channel_imgurl = $imgurl;
        $this->pubDate = Date('Y-m-d H:i:s', time());
        $this->lastBuildDate = Date('Y-m-d H:i:s', time());
    }
 
    /**
     +----------------------------------------------------------
     * 设置私有变量
     +----------------------------------------------------------
     * @access public 
     +----------------------------------------------------------
     * @param string $key  变量名
     * @param string $value  变量的值
     +----------------------------------------------------------
     */
     public function Config($key,$value)
     {
        $this->{$key} = $value;
     }
 
    /**
     +----------------------------------------------------------
     * 添加RSS项
     +----------------------------------------------------------
     * @access public 
     +----------------------------------------------------------
     * @param string $title  日志的标题
     * @param string $link  日志的链接
     * @param string $description  日志的摘要
     * @param string $pubDate  日志的发布日期
     +----------------------------------------------------------
     */
     function AddItem($title, $link, $description, $pubDate)
     {
        $this->items[] = array('title' => $title, 'link' => $link, 'description' => $description, 'pubDate' => $pubDate);
     }
 
     /**
     +----------------------------------------------------------
     * 输出RSS的XML为字符串
     +----------------------------------------------------------
     * @access public 
     +----------------------------------------------------------
     * @return string
     +----------------------------------------------------------
     */
    public function Fetch()
    {
        $rss = "\r\n";
        $rss = "\r\n";
        $rss .= "\r\n";
        $rss .= "channel_title}]]>\r\n";
        $rss .= "channel_description}]]>\r\n";
        $rss .= "{$this->channel_link}\r\n";
        $rss .= "{$this->language}\r\n";
 
        if (!empty($this->pubDate))
            $rss .= "{$this->pubDate}\r\n";
        if (!empty($this->lastBuildDate))
            $rss .= "{$this->lastBuildDate}\r\n";
        if (!empty($this->generator))
            $rss .= "{$this->generator}\r\n";
 
        $rss .= "5\r\n";
 
        if (!empty($this->channel_imgurl)) {
            $rss .= "\r\n";
            $rss .= "channel_title}]]>\r\n";
            $rss .= "{$this->channel_link}\r\n";
            $rss .= "{$this->channel_imgurl}\r\n";
            $rss .= "\r\n";
        }
 
        for ($i = 0; $i < count($this->items); $i++) {
            $rss .= "\r\n";
            $rss .= "items[$i][&#39;title&#39;]}]]>\r\n";
            $rss .= "{$this->items[$i][&#39;link&#39;]}\r\n";
            $rss .= "items[$i][&#39;description&#39;]}]]>\r\n";
            $rss .= "{$this->items[$i][&#39;pubDate&#39;]}\r\n";
            $rss .= "\r\n";
        }
 
        $rss .= "\r\n";
        return $rss;
    }
 
    /**
     +----------------------------------------------------------
     * 输出RSS的XML到浏览器
     +----------------------------------------------------------
     * @access public 
     +----------------------------------------------------------
     * @return void
     +----------------------------------------------------------
     */
    public function Display()
    {
        header("Content-Type: text/xml; charset=utf-8");
        echo $this->Fetch();
        exit;
    }
}
?>

                   

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

SecLists

SecLists

SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

WebStorm Mac版

WebStorm Mac版

好用的JavaScript開發工具

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具