Skip to content

Instantly share code, notes, and snippets.

@yasuken1990
Last active June 25, 2016 12:22
Show Gist options
  • Save yasuken1990/da334fa982d7233fa1c3b94bc1c78b38 to your computer and use it in GitHub Desktop.
Save yasuken1990/da334fa982d7233fa1c3b94bc1c78b38 to your computer and use it in GitHub Desktop.
FC2ブログ記事をRSS取得する。
<?php
// まずは、ドキュメントを読みましょう
// http://help.fc2.com/blog/manual/Home/rss.html
function getRss() {
$rss_url = "http://hogehoge.fc2/?xml";
$rss_data = simplexml_load_file($rss_url,'SimpleXMLElement', LIBXML_NOCDATA);
foreach($rss_data as $key => $item) {
if ($key == 'channel') {
continue;
}
print_r($item);
print_r($item->children('dc',true));
}
}
getRss();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment