

|
channel['title'];
$title = mb_convert_encoding($title, "SJIS", "auto");
$link = $rss->channel['link'];
$rss->items = array_slice($rss->items, 0, 10);
foreach ($rss->items as $item ) {
$title = $item['title'];
$title = mb_convert_encoding($title, "SJIS", "auto");
$url = $item['link'];
$itemday = date('Y/n/j',strtotime(substr($item['dc']['date'],0,10)));
$youbi = array(0 => '(日)', 1 => '(月)', 2 => '(火)', 3 => '(水)', 4 => '(木)', 5 => '(金)', 6 => '(土)');
$mday = date('w',strtotime(substr($item['dc']['date'],0,10)));
$itemtime = date('G:i',strtotime(substr($item['dc']['date'],11,8)));
print "\n";
print "\n";
}
?>
|


|