Quasardb API for PHP
Introduction Installation Compilation Configuration API Reference

Namespaces

  • qdb

Classes

  • QdbAliasAlreadyExistsException
  • QdbAliasNotFoundException
  • QdbBatch
  • QdbBatchResult
  • QdbBlob
  • QdbCluster
  • QdbConnectionException
  • QdbContainerEmptyException
  • QdbDeque
  • QdbEntry
  • QdbEntryCollection
  • QdbException
  • QdbExpirableEntry
  • QdbIncompatibleTypeException
  • QdbInputException
  • QdbInteger
  • QdbOperationDisabledException
  • QdbOperationException
  • QdbProtocolException
  • QdbSystemException
  • QdbTag
  • QdbTagCollection

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: qdb\QdbTag::getEntries()
Example:
$males = $cluster->tag('male')->getEntries();
foreach ($males as $entry) {
    echo($entry->alias() . ' is a male');
}

Copyright 2009-2018 quasardb SAS Documentation generated by ApiGen