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