问题
since I'm quite new to Symfony and Doctrine I got a maybe stupid question ;-)
Can someone use simple words to explain Collections (especially ArrayCollections in entities) to me? What is it and when and how to use them? (Maybe in an simple example)
Couldn't figure it out quite well in the docs...
Thanks in advance.
回答1:
So the ArrayCollection is a simple class that implements Countable, IteratorAggregate, ArrayAccess SPL interfaces, and the interface Selectable made by Benjamin Eberlei.
Not much information there if you are not familliar with SPL interfaces, but ArrayCollection - permit you to save the object instances in an array like form but in an OOP way. The benefit of using the ArrayCollection, instead of standard array is that this will save you a lot of time and work, when you will need simple methods like count, set, unset iterate to a certain object, and most of all very important:
- Symfony2 uses
ArrayCollectionin his core and is doing a lot of things for you if you configure it well:- will generate the mapping for your relationships "one-to-one, many-to-one ... etc"
- will bind the data for you when you create embedded forms
When to use it:
Usually it is used for the object relationship mapping, when using
doctrine, it is recommended to just addannotationsfor your properties and then after the commanddoctrine:generate:entitythe setters and getters will be created, and for relationships likeone-to-many|many-to-manyin the constructor class will be instantiated theArrayCollectionclass instead of just a simplearraypublic function __construct() { $this->orders = new ArrayCollection(); }An example of use:
public function indexAction() { $em = $this->getDoctrine(); $client = $em->getRepository('AcmeCustomerBundle:Customer') ->find($this->getUser()); // When you will need to lazy load all the orders for your // customer that is an one-to-many relationship in the database // you use it: $orders = $client->getOrders(); //getOrders is an ArrayCollection }Actually you are not using it directly but you use it when you configure your models when setting setters and getters.
来源:https://stackoverflow.com/questions/29180651/arraycollection-in-symfony