Skip to content

Instantly share code, notes, and snippets.

@dodopok
Created March 4, 2013 22:49
Show Gist options
  • Save dodopok/5086380 to your computer and use it in GitHub Desktop.
Save dodopok/5086380 to your computer and use it in GitHub Desktop.
Ler RSS com PHP
<?php
$feed = file_get_contents('http://feeds2.feedburner.com/ThiagoBelem/Blog');
$rss = new SimpleXmlElement($feed);
foreach($rss->channel->item as $entrada) {
echo '<p><a href="' . $entrada->link . '" title="' . $entrada->title . '">' . $entrada->title . '</a></p>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment