PHP去掉二维数组的重复值的方法总结,具体代码如下: 方法一:
$v){
$temp[$k]=explode(',$v); //再将拆开的数组重新组装
}
return $temp;
}
方法二:
$v){
$v=join(',将一维数组转换为用逗号连接的字符串
$temp[$k]=$v;
}
$temp=array_unique($temp); //去掉重复的字符串,也就是重复的一维数组
foreach ($temp as $k => $v){
$array=explode(',$v); //再将拆开的数组重新组装
//下面的索引根据自己的情况进行修改即可
$temp2[$k]['id'] =$array[0];
$temp2[$k]['title'] =$array[1];
$temp2[$k]['keywords'] =$array[2];
$temp2[$k]['content'] =$array[3];
}
return $temp2;
}
原文链接:https://www.f2er.com/php/20999.html