Sử dụng phương thức toArray()
. Như thế này:
$dm = $this->get('doctrine.odm.mongodb.document_manager');
$entities = $dm->getRepository('MyBundle:Animal')->findBy(array("prop" => "1"))->toArray();
Nếu bạn cần lấy mảng thực thể, hãy sử dụng array_values()
hàm số. Như thế này:
$entities = array_values($entities);