PHP创建原子提要

时间:2009-11-09 14:43:29

标签: php feeds atom-feed

如何在PHP中创建原子提要?

3 个答案:

答案 0 :(得分:2)

任何可能偶然发现此线程的人的更新:

The best PHP lib/class to generate RSS/Atom中提出了一个非常类似的问题,它引出了许多好的lib / roll你自己的建议。

答案 1 :(得分:0)

使用library

答案 2 :(得分:-2)

维基百科有example of what an ATOM feed looks之类的。您可以随意修改我很久以前写过的 very 基本RSS类,以创建一个非常简单的RSS提要:

class RSSFeed
{       
    var $feedHeader;
    var $feedItems;

    /* Class Constructor */
    function RSSFeed()
    {
        //do some contruction
        $this->feedHeader = '';
        $this->feedItems = '';
    }

    function setFeedHeader($title, $link, $description, $copyright, $lastBuildDate, $ttl)
    {
        $this->feedHeader = '<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel>';
        $this->feedHeader .= '<title>'.$title.'</title>';
        $this->feedHeader .= '<link>'.$link.'</link>';
        $this->feedHeader .= '<description>'.$description.'</description><copyright>'.$copyright.'</copyright>';
        $this->feedHeader .= '<language>en-GB</language><lastBuildDate>'.$lastBuildDate.' GMT</lastBuildDate><ttl>'.$ttl.'</ttl>';
    }

    function pushItem($title, $link, $description, $pubDateTime)
    {
        $item = '<item><title>' . htmlentities(stripslashes($title)) . '</title>';
        $item .= '<link>' . $link . '</link>';
        $item .= '<guid>' . $link . '</guid>';
        $item .= '<description>' . htmlentities(stripslashes($description)) . '</description>';

        $item .= '<pubDate>' . $pubDateTime . ' GMT</pubDate></item>';

        $this->feedItems = $item . $this->feedItems;
    }

    function writeOutFeed($path)
    {
        $file = fopen($path, "w");
        fputs($file, $this->feedHeader);
        fputs($file, $this->feedItems);
        fputs($file, '</channel></rss>');
        fclose($file);
    }
}