You are browsing a version that is no longer maintained. |
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.
Methods that do not alter the collection or have template types
appearing in invariant or contravariant positions are not directly
defined in Doctrine\Common\Collections\Collection
, but are inherited
from the Doctrine\Common\Collections\ReadableCollection
interface.
The methods available on the interface are:
contains
Checks whether an element is contained in the collection. This is an O(n) operation, where n is the size of the collection.
filter
Returns all the elements of this collection for which your callback function returns true
.
The order and keys of the elements are preserved.
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.
map
Applies the given function to each element in the collection and returns a new collection with the elements returned by the function.
reduce
Applies iteratively the given function to each element in the collection, so as to reduce the collection to a single value.
partition
Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.
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.
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 and preserved keys.
1 use Doctrine\Common\Collections\Criteria;
use Doctrine\Common\Collections\Expr\Comparison;
$collection = new ArrayCollection([
'wage' => [
'name' => 'jwage',
],
'roman' => [
'name' => 'romanb',
],
]);
$expr = new Comparison('name', '=', 'jwage');
$criteria = new Criteria();
$criteria->where($expr);
$matchingCollection = $collection->matching($criteria); // [ 'wage' => [ 'name' => 'jwage' ]]
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
You can read more about expressions here.