Quasardb API for PHP
Introduction Installation Compilation Configuration API Reference

Namespaces

  • qdb

Classes

  • qdb\QdbAliasAlreadyExistsException
  • qdb\QdbAliasNotFoundException
  • qdb\QdbBatch
  • qdb\QdbBatchResult
  • qdb\QdbBlob
  • qdb\QdbCluster
  • qdb\QdbConnectionException
  • qdb\QdbContainerEmptyException
  • qdb\QdbDeque
  • qdb\QdbEntry
  • qdb\QdbEntryCollection
  • qdb\QdbException
  • qdb\QdbExpirableEntry
  • qdb\QdbIncompatibleTypeException
  • qdb\QdbInputException
  • qdb\QdbInteger
  • qdb\QdbOperationDisabledException
  • qdb\QdbOperationException
  • qdb\QdbProtocolException
  • qdb\QdbSystemException
  • qdb\QdbTag
  • qdb\QdbTagCollection
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 
<?php
namespace qdb;
/**
 * A traversable collection of {@link QdbTag}.
 *
 * A `QdbTagCollection` is returned by {@link \QdbEntry::getTags()}.
 *
 * @example
 * <code>
 * $bobsTags = $cluster->blob('Bob the blob')->getTags();
 * foreach ($bobsTags as $tag) {
 *     echo('Bob has the tag ' . $tag->alias());
 * }
 * </code>
 *
 * @see QdbEntry::getTags()
 */
class QdbTagCollection implements Iterator
{
}
?>
Copyright 2009-2018 quasardb SAS Documentation generated by ApiGen