答案 0 :(得分:0)
在foreeach循环之前使用array_unique()
函数删除重复数据
例如
<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>
参考[PHP手册] [1] http://php.net/manual/en/function.array-unique.php