You are here: Documentation » API Reference » SimplePie » get_authors()
Table of Contents
get_authors()
Description
class SimplePie { get_authors ( [int $start = 0], [int $length = 0] ) }
Returns an array of SimplePie_Author objects that were found for the item, which can be looped through.
Availability
- Available since SimplePie 1.1.
Parameters
start
The number of the item you want to start at. Remember that arrays begin with 0
, not 1
.
length
The number of items to return. 0
will return all. The start
parameter is required if this is used.
Examples
Loop through each item and do something with each
$feed = new SimplePie(); $feed->set_feed_url('http://simplepie.org/blog/feed/'); $feed->init(); $feed->handle_content_type(); foreach ($item->get_authors() as $author) { echo $author->get_name(); }
See Also
reference/simplepie/get_authors.txt · Last modified: 2011/03/06 03:56 (external edit)