0
上午我正在開發一個項目,我有一個問題,它即將知道如何從數組對象中刪除重複條目。如何從陣列對象中刪除重複條目
這裏是我的陣列的結構:
"IDGROUP": [
{
"id": 72
},
{
"id": 72
}
]
下面是代碼片段:
if($compteGroupes && $compteGroupes->getId()!=0){
$Tableaux_pack[$current_id_fictif]["ingroup"]]=
$Mes_comptes_reels_dependants [$taille_reel];
$Tableaux_pack[$current_id_fictif]["IDGROUP"]=
array(
'id'=>$compteGroupes->getId()
);
}
感謝的對你有所幫助
可能重複[如何從PHP中的數組中刪除重複值](https://stackoverflow.com/questions/307650/how-to-remove-duplicate-values-from-an- array_in-php) – amicoderozer
當我使用array_unique()時,問題仍然存在 –
我的目標是當我在這個數組上循環時刪除共享相同屬性值的對象的重複項 –