CodeIgniterとRSSパーサーライブラリを使用しています。私はこのコードで大丈夫です。
function get_ars(){//RSSパーサーをロード$this-> load-> library('rssparser');
// Get 6 items from arstechnica $rss = $this->rssparser->set_feed_url('http://feeds.arstechnica.com/arstechnica/index/')->set_cache_life(30)->getFeed(6); foreach ($rss as $item) { echo $item['title']; echo $item['description']; } }
しかし、コンテンツエンコード用にさらに追加したいと思います。でもどうしたらいいのかわからない。