首页 > 代码库 > php 检查该数组有重复值

php 检查该数组有重复值

if (count($array) != count(array_unique($array)))

{ echo ‘该数组有重复值‘; }

php 检查该数组有重复值