标签:blog http os ar sp div log html ef
php里有一个处理数组重复值得函数array_unique,我们的思路就是用这个函数来实现的。
if (count($array) != count(array_unique($array))) { echo ‘该数组有重复值‘; }
php判断检测一个数组里有没有重复的值
原文地址:http://my.oschina.net/ajian2014/blog/325750