Skip to content

Latest commit

 

History

History
328 lines (213 loc) · 7.94 KB

index.rst

File metadata and controls

328 lines (213 loc) · 7.94 KB

Introduction

Doctrine Collections is a library that contains classes for working with arrays of data. Here is an example using the simple Doctrine\Common\Collections\ArrayCollection class:

Collection Methods

Doctrine Collections provides an interface named Doctrine\Common\Collections\Collection that resembles the nature of a regular PHP array. That is, it is essentially an ordered map that can also be used like a list.

A Collection has an internal iterator just like a PHP array. In addition, a Collection can be iterated with external iterators, which is preferable. To use an external iterator simply use the foreach language construct to iterate over the collection, which calls getIterator() internally, or explicitly retrieve an iterator though getIterator() which can then be used to iterate over the collection. You can not rely on the internal iterator of the collection being at a certain position unless you explicitly positioned it before.

The methods available on the interface are:

add

Adds an element at the end of the collection.

clear

Clears the collection, removing all elements.

contains

Checks whether an element is contained in the collection. This is an O(n) operation, where n is the size of the collection.

containsKey

Checks whether the collection contains an element with the specified key/index.

current

Gets the element of the collection at the current iterator position.

get

Gets the element at the specified key/index.

getKeys

Gets all keys/indices of the collection.

getValues

Gets all values of the collection.

isEmpty

Checks whether the collection is empty (contains no elements).

first

Sets the internal iterator to the first element in the collection and returns this element.

exists

Tests for the existence of an element that satisfies the given predicate.

filter

Returns all the elements of this collection for which your callback function returns true. The order and keys of the elements are preserved.

forAll

Tests whether the given predicate holds for all elements of this collection.

indexOf

Gets the index/key of a given element. The comparison of two elements is strict, that means not only the value but also the type must match. For objects this means reference equality.

key

Gets the key/index of the element at the current iterator position.

last

Sets the internal iterator to the last element in the collection and returns this element.

map

Applies the given function to each element in the collection and returns a new collection with the elements returned by the function.

next

Moves the internal iterator position to the next element and returns this element.

partition

Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.

remove

Removes the element at the specified index from the collection.

removeElement

Removes the specified element from the collection, if it is found.

set

Sets an element in the collection at the specified key/index.

slice

Extracts a slice of $length elements starting at position $offset from the Collection. If $length is null it returns all elements from $offset to the end of the Collection. Keys have to be preserved by this method. Calling this method will only return the selected slice and NOT change the elements contained in the collection slice is called on.

toArray

Gets a native PHP array representation of the collection.

Selectable Methods

Some Doctrine Collections, like Doctrine\Common\Collections\ArrayCollection, implement an interface named Doctrine\Common\Collections\Selectable that offers the usage of a powerful expressions API, where conditions can be applied to a collection to get a result with matching elements only.

matching

Selects all elements from a selectable that match the expression and returns a new collection containing these elements.

You can read more about expressions :ref:`here <expressions>`.