Magento: how to merge two product collections into one?

后端 未结 5 1411
逝去的感伤
逝去的感伤 2020-12-13 16:30

if i have two product collections is there a way to merge them into one?

for example (my final intent isn\'t to actually just get a collection of 2 cats, this is jus

5条回答
  •  执笔经年
    2020-12-13 17:00

    I don't think there is such a method, but you can probably do something like that :

    foreach ($collection1 as $item){
        $collection2->addElem($item);
    }
    

提交回复
热议问题