Skip to content

Instantly share code, notes, and snippets.

@breyten
Created June 28, 2013 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save breyten/5b6355e1e62f54d5c910 to your computer and use it in GitHub Desktop.
Save breyten/5b6355e1e62f54d5c910 to your computer and use it in GitHub Desktop.
Get enclosures of NPO kunststof feeds
$feed = new SimplePie();
$feed->set_feed_url('http://feeds.ntr.nl/dev/kunststof-2013');
$feed->init();
foreach($feed->get_items() as $item) {
$podcast_url = $item->get_enclosure();
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment