我使用这个:
$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);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。