如何从PHP中的数组中删除重复的值?
使用array_unique()。
例:
$array = array(1, 2, 2, 3); $array = array_unique($array); // Array is now (1, 2, 3)