0

Kohana フレームワークでの RSS フィードの解析を支援するヘルパーがあることを発見しました。

作成に役立つものはありますか?

4

2 に答える 2

3

create()コハナ3のクラスのメソッドでそれを作り上げFeedます。そのコードは次の場所にあります。

system / classes / kohana / feed.php

チャンネル情報とそのフィードアイテムを最小限に定義する必要があります。

$info = array(
           'title' => 'Dark into the Narwhal',
           'pubDate' => date("D, d M Y H:i:s T"),
           'description' => 'Eating bacon, taking names and leaving fortunes',
           'link' => 'http://example.com/',
           'copyright' => 'The Narwhal Peon',
           'language' => 'en-us',
           'ttl' => '7200',
        );

$items = array(
           array(
               'title' => 'We journey with watermelon helmets',
               'link' => 'blog/journey-with-watermelon-helmets',
               'description' => 'Dawn breaks and the wind follows soon after. 
                                 We have found our supplies run low.',
           ),

            //-- and the other posts you want to include
         ); 

次に、そのデータをメソッドにプラグインしてXMLを生成します。

$xml = Feed::create($info, $items);

これは、あなたがそれを出すとき、echoまたはそれを関連するビューに渡すときにあなたにこれを与えるでしょう:

<?xml version="1.0" encoding="UTF-8"?>
 <rss version="2.0">
  <channel>
  <title>Dark into the Narwhal</title>
  <pubDate>Fri, 21 Dec 2012 13:32:42 EST</pubDate>
  <description>Eating bacon, taking names and leaving fortunes</description>
  <link>http://example.com/</link>
  <copyright>The Narwhal Peon</copyright>
  <language>en-us</language>
  <ttl>7200</ttl>
  <generator>KohanaPHP</generator>
  <item>
    <title>We journey with watermelon helmets</title>
    <link>http://example.com/blog/journey-with-watermelon-helmets</link>
    <description>Dawn breaks and the wind follows soon after. 
                 We have found our supplies run low.</description>
  </item>

  <!-- the other posts will be here -->

  </channel>
</rss>
于 2011-07-04T21:56:45.750 に答える
1

http://docs.kohanaphp.com/helpers/feed#create

于 2009-06-02T04:45:00.903 に答える