Class QdbEntryCollection
A traversable collection of QdbEntry.
A QdbEntryCollection is returned by QdbTag::getEntries().
Entries in the collection have a concrete type like QdbBlob, QdbInteger, QdbDeque or QdbTag
- QdbEntryCollection implements Iterator
See:
Example:
QdbTag::getEntries()Example:
$males = $cluster->tag('male')->getEntries(); foreach ($males as $entry) { echo($entry->alias() . ' is a male'); }
current(),
key(),
next(),
rewind(),
valid()
|