Created
September 10, 2014 00:15
-
-
Save mgng/ed2b596eb5f640269b27 to your computer and use it in GitHub Desktop.
rss_demo.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$rss = file_get_contents( "http://instagrss-mgng.rhcloud.com/parishilton" ); | |
$xml = simplexml_load_string( $rss ); | |
foreach( $xml->channel->item as $item ) { | |
print_r( array( | |
"title" => (string)$item->title, | |
"link" => (string)$item->link, | |
"description" => (string)$item->description, | |
"subject" => (string)$item->children("dc", true)->subject, | |
"creator" => (string)$item->children("dc", true)->creator, | |
"date" => (string)$item->children("dc", true)->date, | |
) ); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment