Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created August 20, 2014 14:12
Show Gist options
  • Save eminetto/6bcb090e38cfffa0c142 to your computer and use it in GitHub Desktop.
Save eminetto/6bcb090e38cfffa0c142 to your computer and use it in GitHub Desktop.
$feed = new SimplePie();
$feed->set_feed_url('http://billjr.com.br/feed/');
$feed->enable_order_by_date(true);
$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/cache');
$feed->init();
return View::make('inicio')->with('feed', $feed);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment