Returns the title of the channel. |
Signature: getTitle() |
Returns:
String - The title of the channel, or an empty string.
|
Example:
Returns the title of the channel. $title = $myChannel->getTitle(); |
Returns the url of the channel. |
Signature: getLink() |
Returns:
String - The url of the channel, or an empty string.
|
Example:
Returns the url of the channel. $link = $myChannel->getLink(); |
Returns the description of the channel. |
Signature: getDescription() |
Returns:
String - The description of the channel, or an empty string.
|
Example:
Returns the description of the channel. $description = $myChannel->getDescription(); |
Returns the item count of the channel. |
Signature: getItemCount() |
Returns:
int - The item count of the channel.
|
Example:
Returns the item count of the channel. $itemCount = $myChannel->getItemCount(); |
Returns a reference to the item at the specified index. |
Signature: &getItem($index) |
Parameters:
int index - The index of the requested item.
|
Returns:
xml_domit_rss_item - The item at the specified index.
|
Example:
Returns the item at the specified index. $myItem =& $myChannel->getItem(0); |