You are here

public function ArrayCollection::getKeys in Plug 7

Gets all keys/indices of the collection.

Return value

array The keys/indices of the collection, in the order of the corresponding elements in the collection.

Overrides Collection::getKeys

File

lib/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php, line 225

Class

ArrayCollection
An ArrayCollection is a Collection implementation that wraps a regular PHP array.

Namespace

Doctrine\Common\Collections

Code

public function getKeys() {
  return array_keys($this->elements);
}