Weigh-in with your opinion! Let us know what you think. Goals for SimplePie 2.

SimplePie Documentation.  Learn how to use this thing.  It's way better than going to school.

You are here: Documentation » API Reference » SimplePie_Item » get_feed()

get_feed()

Description

class SimplePie_Item {
	get_feed ()
}

Returns the parent SimplePie object of the item.

:!: Read Typical Multifeed Gotchas for additional information.

Availability

  • Available since SimplePie 1.0.

Examples

Get the title of the parent feed, starting at the item level

$feed = new SimplePie();
$feed->set_feed_url(array(
	'http://simplepie.org/blog/feed/',
	'http://feeds.tuaw.com/weblogsinc/tuaw'
));
$feed->init();
$feed->handle_content_type();
 
foreach ($feed->get_items() as $item)
{
	echo $item->get_title();
	echo 'Posted to ' . $item->get_feed()->get_title();
}

See Also


reference/simplepie_item/get_feed.txt · Last modified: 2008/02/28 15:57 by admin