标签:val code value col UNC array iss 去重 else
/** * 二维数组根据key去重复 * @param $arr * @param $key * @return array */ function arrayUniqueness($arr,$key){ $res = array(); foreach ($arr as $value) { //查看有没有重复项 if(isset($res[$value[$key]])){ //有:销毁 unset($value[$key]); } else{ $res[$value[$key]] = $value; } } return $res; }
标签:val code value col UNC array iss 去重 else
原文地址:https://www.cnblogs.com/bk233/p/9023496.html