You are here: Documentation » API Reference » SimplePie » get_contributor()
Table of Contents
get_contributor()
Description
class SimplePie { get_contributor ( [int $key = 0] ) }
Returns a single array location containing a SimplePie_Author object.
Availability
- Available since SimplePie 1.1.
Parameters
key
The item that you want to return. Remember that arrays begin with 0
, not 1
.
Examples
Get a contributor for the feed.
$feed = new SimplePie(); $feed->set_feed_url('http://simplepie.org/blog/feed/'); $feed->init(); $feed->handle_content_type(); if ($contributor = $feed->get_contributor()) { echo $contributor->get_name(); }
See Also
reference/simplepie/get_contributor.txt · Last modified: 2011/03/06 03:56 (external edit)