public function AbstractFeed::getAuthor in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/AbstractFeed.php \Zend\Feed\Writer\AbstractFeed::getAuthor()
Get a single author
Parameters
int $index:
Return value
string|null
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ AbstractFeed.php, line 528
Class
Namespace
Zend\Feed\WriterCode
public function getAuthor($index = 0) {
if (isset($this->data['authors'][$index])) {
return $this->data['authors'][$index];
}
return;
}