<?php
// ȒPŃVvȎgp

	require_once './commonRSS.inc';
	
	$options = new NewsOptions(
		array(	'charset'=>'UTF-8',// <- gݍރTCg̕R[hɍ킹ĂBwF (SJIS, JIS, EUC-JP, UTF-8)
			'timeout'=>3,// ^CAEg3b
		)
	);
	$rss = new News( $options );

	$rss->readRSS( 'http://today.reuters.co.jp/rss/topNews/' );//RSSURLw
	$rss->show();
	
	$rss->readRSS( 'http://news.goo.ne.jp/news/rss/topics/chumoku/index.rdf' );
	$rss->show();
?>