RSS の効率的な入門チュート...login
RSS の効率的な入門チュートリアル
著者:php.cn  更新時間:2022-04-11 14:48:25

RSSの例


これらの例では、RSS リーダーを使用して RSS を示します。

RSS <channel> 要素

channel 要素 (<title>、<link>、および <description>) の必要なオプションを設定します

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
</channel>
</rss>

例を実行する»

[クリック] [インスタンスの実行] ボタンをクリックして、オンライン インスタンスを表示します。

RSS のカテゴリを指定します。 プログラム

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <category>IT/Internet/Web development</category>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
    <category>News</category>
    <category>Tutorial</category>
  </item>
</channel>
</rss>

インスタンスの実行»「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示

RSSに画像を指定してください

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <generator>Notepad</generator>
    <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
  </item>
</channel>
</rss>

インスタンスの実行» 「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します

RSSの言語を指定します

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <image>
    <url>http://www.w3cschool.cc/images/logo.png</url>
    <title>W3Cschool.cc</title>
    <link>http://www.w3cschool.cc</link>
  </image>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
  </item>
</channel>
</rss>

インスタンスを実行する»オンラインインスタンスを表示するには「インスタンスを実行」ボタンをクリックします

RSS用のテキスト入力ボックスを追加します

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <language>en-us</language>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
  </item>
</channel>
</rss>

インスタンスを実行»「インスタンスを実行」ボタンをクリックしてオンラインインスタンスを表示します

RSSを更新する必要がない日を指定します

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <textinput>
    <description>Search Google</description>
    <title>Search</title>
    <link>http://www.google.no/search?</link>
    <name>q</name>
  </textinput>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
  </item>
</channel>
</rss>

インスタンスの実行»オンラインの例を表示するには、「インスタンスの実行」ボタンをクリックしてください

例の分析

RSS <item>要素

必要なオプションを設定します(<title>、 <link>、<description>)

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <skipDays>
    <day>Saturday</day>
    <day>Sunday</day>
  </skipDays>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
  </item>
</channel>
</rss>

例を実行する»オンライン例を表示するには、「例を実行」ボタンをクリックしてください

RSS アイテムにコメントリンクを追加します

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>http://www.w3cschool.cc/xml</link>
    <description>New XML tutorial on W3Cschool</description>
  </item>
</channel>
</rss>

インスタンスの実行»

「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します

RSSプロジェクトにメディアファイルを追加します

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
    <comments>http://www.w3cschool.cc/rss/comments.php</comments>
  </item>
</channel>
</rss>

インスタンスの実行»

「インスタンスの実行」をクリックしますオンライン インスタンスを表示するにはボタンをクリックします

プロジェクトに一意の識別子を追加します

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
    <enclosure url="http://www.w3cschool.cc/media/3d.wmv"
    length="78645" type="video/wmv" />
  </item>
</channel>
</rss>

インスタンスを実行する»

オンライン インスタンスを表示するには、[インスタンスを実行] ボタンをクリックします

公開情報を追加しますRSS プロジェクト

インスタンス

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
    <guid>http://www.w3cschool.cc/rss/item0768</guid>
  </item>
</channel>
</rss>

インスタンスの実行»

「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します

RSS プロジェクトにサードパーティの

インスタンスを追加します

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Edited by XMLSpy® -->
<rss version="2.0">
<channel>
  <title>W3Cschool Home Page</title>
  <link>http://www.w3cschool.cc</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3cschool.cc/rss</link>
    <description>New RSS tutorial on W3Cschool</description>
    <pubDate>Thu, 27 Apr 2006</pubDate>
  </item>
</channel>
</rss>

インスタンスの実行»

「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します

分析例