我正在使用 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']; } }
但我想为内容编码添加更多内容。但我不知道该怎么做。