$result = array(
0=>array('a'=>1,'b'=>'Hello'),
1=>array('a'=>1,'b'=>'other'),
2=>array('a'=>1,'b'=>'other'),
);
如果重複刪除它,所以結果如下:刪除重複關聯數組在PHP
$result = array(
0=>array('a'=>1,'b'=>'Hello'),
1=>array('a'=>1,'b'=>'other')
);
可以在任何知道做到這一點?
感謝
是什麼使得它複製一個'='&'B = other'或只是'B = other' ... – Baba
'了'和'B' @ Bada謝謝 – kn3l
http://stackoverflow.com/questions/3767318/how-to-remove-duplicate-values-from-an-associative-array-based-on-a-specific-val –