PHPからRSSを手軽に作成するライブラリ: RSSWriter
2006年02月06日-
RSSWriter is a convenience class for generating RSS 1.0 feeds with PHP.
RSSWriterを使えば、RSSの詳しいフォーマットについて知らなくても、手軽にRSS1.0 feedを作成することが出来ます。
クラスの形式でライブラリ化されているので、自作のツールに組み込むのも容易です。
サンプルは次のような感じ。
<?php
include("rss10.inc");
$rss=new RSSWriter("http://www.example.org/",
"Example Site",
"The best examples out there.",
array(
"dc:publisher" => "Example Publishing Inc.",
"dc:creator" => "E X Ample <me@example.org>"
)
);
$rss->setImage("http://www.example.org/images/rss.gif", "Example Site: All the Examples Fit to Print");
$rss->addItem("http://www.example.org/page1.html", "First Example Page");
$rss->addItem("http://www.example.org/page2.html", "Second Example Page",
array(
"description" => "This is the second page of examples on this wonderful site",
"dc:subject" => "examples",
"dc:creator" => "Fred <fred@example.org>"
)
);
$rss->serialize();
?>
最新のブログ記事(新着順)
- PHPフレームワークにTwitter,Facebook等の認証を速攻実装できる「Opauth」
- 2012年5月23日 管理人のブックマーク
- PC・スマホ・タブレットで動くクールなHTML5スライドショー実装ができる「Juicebox」
- 既にここまで出来るWebGLのデモ22
- 2012年5月22日 管理人のブックマーク
- CSSな吹き出しを作れるWEBツール「cssarrowplease」
- PHP+Bootstrapで書かれた美しいGitリポジトリビューア「GitList」
- 2012年5月21日 管理人のブックマーク
- CSS3で描かれたシェイプのサンプル集
- これは新しい!クールなタイル状の年間カレンダー実装jQueryプラグイン「jQuery Verbose Calendar」
- 過去のエントリ



















間違いの指摘をしていただける方はメール、あるいはTwitter/FBでお願いします(クリック)



