外部サイトのRSSを自分のサイトに読み込む覚え書き | 東京都世田谷区 ホームページ制作 [k]id

外部サイトのRSSを自分のサイトに読み込む覚え書き

Category Ajax Update 2008.09.05

twitterfacebookgoogle+はてなブックマークPocketであとで読むfeedlyで購読

以下をphpで保存。

header("Content-type: application/xml");
$url = "http://kidokorock.com/feed/atom";
readfile($url);

上記ファイルをサーバーにアップし、
リンクを張る事で読み込み可能。

ページトップへ