Two PHP methods to remove duplicates from a two-dimensional array, two PHP methods to remove two-dimensional arrays_PHP tutorial

WBOY
Release: 2016-07-12 09:05:46
Original
814 people have browsed it

Two PHP methods to remove duplicate values ​​from a two-dimensional array, two PHP methods to remove two-dimensional arrays

A summary of PHP methods to remove duplicate values ​​from a two-dimensional array, the specific code is as follows:
Method 1:

//二维数组去掉重复值
function array_unique_fb($array2D){
 foreach ($array2D as $v){
  $v=join(',',$v); //降维,也可以用implode,将一维数组转换为用逗号连接的字符串
  $temp[]=$v;
 }
 $temp=array_unique($temp); //去掉重复的字符串,也就是重复的一维数组
 foreach ($temp as $k => $v){
  $temp[$k]=explode(',',$v); //再将拆开的数组重新组装
 }
 return $temp;
}
Copy after login

Method 2:

//二维数组去掉重复值,并保留键值
function array_unique_fb($array2D){
 foreach ($array2D as $k=>$v){
  $v=join(',',$v); //降维,也可以用implode,将一维数组转换为用逗号连接的字符串
  $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;
}


Copy after login

Two PHP methods for removing duplicates from two-dimensional arrays, each has its own advantages and disadvantages. You can choose according to the specific situation.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1067831.htmlTechArticleTwo php methods to remove duplicates from a two-dimensional array, two php methods to remove two-dimensional arrays php to remove two-dimensional arrays A summary of the method of repeated values, the specific code is as follows: Method 1: //Remove the two-dimensional array...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!