星期四, 5月 17, 2007

簡單用 PHP 建立 RSS 的方法


最近找了一個好用的 RSS 產生工具
可以很簡單並且快速的讓網站具有 RSS 功能
要修改的程式碼不超過 30 行
以下是步驟

1. 下載 phpFeedCreator 工具
2. 新建一個 rss.php

// Include phpFeedCreator
require_once('phpFeedCreator/phpFeedCreator.php');

// sets rss parameters
$pfc->setRssParams("2.0");

// sets channel elements (title, link, description)
$pfc->setChannelElements("RSS Channel Title", "http://your_website", "Channel Description");

// adds a item (title, link, description)
$pfc->addItem("title1", "http://title1_url", "desc1");

// adds another item (title, link, description)
$pfc->addItem("title2", "http://title_url2", "desc2");

// puts out full rss document
$pfc->createFeed();

?>

3. 用 http://your_website/rss.php 訂閱 RSS

沒有留言: