Ben basit bir Twitpic rss feed okumaya çalışıyorum ama çok şans sahip değilim. Benim koduyla yanlış bir şey göremiyorum, ama print_r kullanırken onun sadece aşağıdaki dönen ()
Array ( [title] => SimpleXMLElement Object ( ) )
İşte benim kod:
function get_twitpics() {
/* get raw feed */
$url = 'http://www.twitpic.com/photos/Shealan/feed.rss';
$raw = file_get_contents($url);
$xml = new SimpleXmlElement($raw);
/* create array from feed items */
foreach($xml->channel->item as $item) {
$article = array();
$article['title'] = $item->description;
}
return $article;
}