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_Item » get_source()

get_source()

Description

class SimplePie_Item {
	get_source ()
}

Returns a SimplePie_Source object for the atom:source data in the item.

Availability

  • Available since SimplePie 1.1

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)
{
	if ($source = $item->get_source())
	{
		echo $source->get_title();
	}
}

See Also


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