// ------------------------------
require_once('magpierss/rss_fetch.inc');
define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
$count = 5;
// $length = 64;
?>
【DisneyManiax】ディズニーマニアクス|目指せディズニーマニア!
$url = 'http://disneymaniax.jugem.jp/?mode=rss';
$rss = fetch_rss($url);
echo '
';
array_splice($rss->items, $count);
foreach ($rss->items as $item) {
$href = $item['link'];
$title = mb_convert_encoding($item['title'], "UTF-8", "auto");
$up = mb_convert_encoding($item[dc][date], "UTF-8", "auto");
list($tmpDate, $tmpTime) = explode("T", $up);
list($tmpYear, $tmpMonth, $tmpDay) = explode("-", $tmpDate);
$date_str = $tmpMonth . '月' . $tmpDay . '日';
echo '- ';
echo '' . $date_str . '' . $title . "
";
}
echo ' - >>DisneyManiaxブログを見る
';
echo "
";
?>