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