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);

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...