在产品页面上,我想显示随机选择的 4 个其他产品,但绝不是已经显示的产品。显示的产品 id 是$_product->getId()
,所有产品都进入一个$result[]
数组,如下所示:
foreach($collection as $product){
$result[]=$product->getId();
}
我$need = array_rand($result, 4);
用来获取 4 个随机产品的 id,但它可能包括展示产品的 id。如何$_product->getId()
从$need[]
数组中排除?谢谢你。