返回数组,而不是 Doctrine 查询中的对象 - Symfony2

2022-08-30 22:34:07

我正在使用这个:

$this->getDoctrine()->getRepository('MyBundle:MyEntity')->findAll(array(), Query::HYDRATE_ARRAY);

我认为这应该确保它返回数组的数组,但它仍然返回对象数组。

我需要将整个结果作为数组的数组返回,以便我可以做这种事情(愚蠢的例子,但它解释了我的意思):

<?php
$result = $this->getDoctrine()->getRepository('MyBundle:MyEntity')->findAll('return-an-array');
?>    
This is the age of the person at the 5th record: <?php echo $result[4]['age']; ?>

答案 1

根据此 EntityRepository 类,不要采用多个参数。findAll

下面的代码应该做你想做的事

$result = $this->getDoctrine()
               ->getRepository('MyBundle:MyEntity')
               ->createQueryBuilder('e')
               ->select('e')
               ->getQuery()
               ->getResult(\Doctrine\ORM\Query::HYDRATE_ARRAY);

答案 2

也可以使用该函数代替 。它返回一个数据数组:getArrayResult()getResult()

$query = $em->createQuery("SELECT test FROM namespaceTestBundle:Test test");
$tests = $query->getArrayResult();

推荐