public function ArrayCollection::get in Plug 7
Gets the element at the specified key/index.
Parameters
string|integer $key The key/index of the element to retrieve.:
Return value
mixed
Overrides Collection::get
1 call to ArrayCollection::get()
- ArrayCollection::offsetGet in lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php - Required by interface ArrayAccess.
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php, line 217
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\CollectionsCode
public function get($key) {
return isset($this->elements[$key]) ? $this->elements[$key] : null;
}