私はSymfony2とDoctrineを使ってデータベースから値の配列を取得しています。私は、データベーステーブルの1つのフィールドから値のリストが必要です。Doctrineを使って値の配列を取得
return $this->createQueryBuilder('ad')
->select('ad.extId')
->where('ad.extId is not NULL')
->getQuery()
->getArrayResult();
それは次の配列を返します:
Array
(
[0] => 3038
)
どれでも1:
Array
(
[0] => Array
(
[extId] => 3038
)
)
は、私は、次のrevieveしたいを
私は、次のコードを使用しています余分なforeachループなしでDoctrineからこのダイレクトを得るためのidee?
これはhttp://stackoverflow.com/questions/11657835/how-to-get-a-one-dimensional-scalar-array-それをだろうas-a-doctrine-dql-query-result/11685062#11685062またはこれhttp://stackoverflow.com/questions/11657835/how-to-get-a-one-dimensional-scalar-array-as-a-doctrine -dql-query-result/11685062#11685062 – Confidence