【原创】收集的一些英语学习的RSS源
$grammarly_blog = "https://grammarly.com/blog/feed";
$Pearson_English = "https://english.com/blog/feed";
$ABA_Journal = "https://blog.abaenglish.com/feed";
$ESL_podcast_Blog = "https://eslpod.com/eslpod_blog/feed";//
$Effortless_English = "https://effortlessenglishclub/feed";
$BBC_world_news = "http://feeds.bbci.co.uk/news/world/rss.xml";
$CBN_news = "http://www.cbn.com/cbnnews/world/feed/";
$Google_News = "http://news.google.com/?output=rss";
$English_blog = "http://english.com/blog/feed";
////资讯////
$CBS_News = "https://www.cbsnews.com/latest/rss/main";
$Russia_Journal = "https://russiajournal.com/feed";
$Left_Foot_Forward = "https://leftfootforward.org/feed/";
$The_Jerusalem_Post = "https://www.jpost.com/rss/rssfeedsfrontpage.aspx";
$Vox = "https://www.vox.com/rss/index.xml";
$NPR = "https://feeds.npr.org/001/rss.xml";
$USA_Today = "https://feeds.feedblitz.com/usatoday-NewsTopStories";
////科技////
$TechXplore = "https://techXplore.com/rss-feed/";
$TechNode = "https://technode.com/feed/";
$The_Verge = "https://www.theverge.com/rss/index.xml";
$AppInsider = "https://appinsider.com/rss/news";
$Mashable = "https://mashable.com/feed/";
$Gizmodo = "https://gizmodo.com/rss";
$TechDirt = "https://www.techdirt.com/techdirt_rss.xml";
////旅游////
$ATLASBOOTS = "https://www.atlasandboots.com/feed/";
$Lost_With_Purpose = "https://www.lostwithpurpose.com/blog/feed/";
$The_Tales_of_Teaveler = "https://thetalesoftraveler.com/feed/";
$Sidetracked_Magazine = "https://www.sidetracked.com/feed/";
$iamaileen = "https://iamaileen.com/feed/";
$Wandering_earl = "https://www.wanderingearl.com/feed";
$Uncornered_Market = "https://uncorneredmarket.com/feed/";
$Alisons_Adventures = "https://alisonsadventures.com/feed/";
////体育////
$Ninty_Minutes = "https://www.90min.com/posts.rss";
$Deadspin = "https://deadspin.com/rss";
$FanSided = "https://fansided.com/feed/";
$SBNation = "https://www.sbnation.com/rss/current.xml";
$ClutchPoints = "https://clutchpoints.com/feed";
$EssentiallySports = "https://www.essentiallysports.com/feed";
$Belly_Up_Sports = "https://bellyupsports.com/feed/";
相关的采集代码如下:
$rss = $Belly_Up_Sports;
$feeds = simplexml_load_file($rss);
if(!empty($feeds))
{
$site=$feeds->channel->title;
$sitelink =$feeds->channel->links;
$i=0;
foreach($feeds->channel->item as $item)
{
$title=addslashes($item->title);
$sql="select * from rss where title='{$title}'";
$this->db->query($sql);
$count = $this->db->affected_rows();
if($count==0)
{
$arr = array('title'=>$title,'link'=>addslashes($item->link),'description'=>addslashes($item->description),'content'=>$item->children('content',true)->encoded,'pubDate'=>addslashes($item->pubDate),'site'=>addslashes($site),'sitelink'=>addslashes($sitelink));
$this->db->insert('rss',$arr);
$i=$i+1;
}
}
echo "ok,".$i." items grabbed.";
}