SimplePie 1.5 is now available!

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

You are here: Documentation » API Reference » SimplePie_Source » get_item()

get_item()

Description

class SimplePie_Source {
	get_item ()
}

Returns the parent SimplePie_Item object of the source. This works the same way as get_feed().

Availability

  • Available since SimplePie 1.1.

Examples

Get the title of the parent item, starting at the source 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)
{
	if ($source = $item->get_source())
	{
		echo 'Sourced item is ' . $source->get_item()->get_title();
	}
 
	echo 'Posted to ' . $item->get_feed()->get_title();
}

See Also


reference/simplepie_source/get_item.txt · Last modified: 2011/03/06 03:56 (external edit)