gpt4 book ai didi

php - Doctrine 如何在使用 addSelect 查询时在一行中获得结果

转载 作者:行者123 更新时间:2023-11-30 22:10:57 25 4
gpt4 key购买 nike

我的 SystemRepository 中有这个 Doctrine 查询:

        $qb = $this->createQueryBuilder('s')
->select('s')
->addSelect('item')
->from('Item', 'item')
->where('item.iId = s.id');

通过这个查询,我得到了这样的结果:

    Array
(
[0] => System 1
[1] => ItemObject related to SystemObject 1
[2] => SystemObject 2
[3] => ItemObject related to SystemObject 2
[4] => SystemObject 3
[5] => ItemObject related to SystemObject 3
)

但我想得到这样的结果:

    Array
(
[0] => Array(
[0] => SystemObject 1
[1] => ItemObject related to SystemObject 1
),
[1] => Array(
[0] => SystemObject 2
[1] => ItemObject related to SystemObject 2
),
[2] => Array(
[0] => SystemObject 3
[1] => ItemObject related to SystemObject 3
)
)

这可能吗?

由于技术原因,我无法在系统和项目之间进行 Doctrine 映射。

最佳答案

我认为开箱即用是不可能的。但无论如何,在我看来,这两个结构看起来非常相似。您可以轻松应用基于 PHP 的分组:

$grouped = [];
for ( $i = 0; $i < count($data); $i+=2){
$grouped[] = [
$data[$i],
$data[$i+1]
];
}

希望这有助于...

关于php - Doctrine 如何在使用 addSelect 查询时在一行中获得结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40150532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com