$_uri
$_uri : string
Our root ("home") URI
The Horde_Feed_Base class is an abstract class representing feeds.
Horde_Feed_Base implements two core PHP 5 interfaces: ArrayAccess and Iterator. In both cases the collection being treated as an array is considered to be the entry collection, such that iterating over the feed takes you through each of the feed's entries.
__construct(mixed $xml = null, string $uri = null, \Horde_Http_Client $httpClient = null)
Feed constructor
The Horde_Feed_Base constructor takes the URI of a feed or a feed represented as a string and loads it as XML.
mixed | $xml | The feed as a string, a DOMElement, or null. |
string | $uri | The full URI of the feed, or null if unknown. |
\Horde_Http_Client | $httpClient |
If loading the feed failed.