php – 返回数组,不是来自Doctrine查询的对象 – Symfony2

前端之家收集整理的这篇文章主要介绍了php – 返回数组,不是来自Doctrine查询的对象 – Symfony2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用这个:
$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']; ?>
根据这个 EntityRepository class,findAll不要多个参数.

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

$result = $this->getDoctrine()
               ->getRepository('MyBundle:MyEntity')
               ->createQueryBuilder('e')
               ->select('e')
               ->getQuery()
               ->getResult(\Doctrine\ORM\Query::HYDRATE_ARRAY);
原文链接:https://www.f2er.com/php/138959.html

猜你在找的PHP相关文章