0

私は一連のフォーラムを含むphp Webサイトを持っています。これらの特定のフォーラムの特定のトピックに関する最新の記事を追加したいと思います。したがって、基本的に各フォーラムには異なる記事のセットがあります。RSS フィードを実装する Web アプリケーションを探す必要がありますか? また、画像付きの RSS フィードも見つかりませんでした。出来ますか?

PS私はXML言語の知識がありません。

どんな助けでも大歓迎です。ありがとう

4

1 に答える 1

1

RSS フィードを動的に作成し、どこかにホストする必要があります。PHP Web サイトがあるとすれば、既に "Web アプリケーション" が用意されています。フォーラムのカテゴリと記事を読み込んで、簡単な RSS を画面に表示するものを作成できます。次に、RSS アイコン (そうしている場合) をそのページにリンクします。

RSS フィードの作成は、実際には非常に簡単です。

例えば:

<?xml version="1.0" encoding="utf-8"?>
 <rss version="2.0">
 <channel>
 <title>The RSS title</title>
 <link>The link to this page, i.e. your feed</link>
 <description>Description for the feed. Some readers use that so make it nice :)</description>

<!-- Repeat as many items as you need, i.e. as the number of your articles -->
 <item>
 <title>Some article title</title>
 <link>http://link/to/article</link>
 <description>Article description, long or short</description>
 <guid>http://webdesign.about.com/rss2.0feed/entry.html</guid>
 <!-- Use enclosures for elements like images audio etc. -->
 <enclosure url="http://url/of/the/pic" length="size_of_the_pic" type="image/jpeg"/>
 </item>
<!-- end repeat -->
 </channel>
 </rss>

以下に、理解に役立つオンライン リソースをいくつか示します。

http://webdesign.about.com/od/rss/a/aa062707.htm http://www.mnot.net/rss/tutorial/

于 2013-07-03T08:04:05.423 に答える