Home >Backend Development >PHP Problem >How to delete duplicate elements in a two-dimensional array in php

How to delete duplicate elements in a two-dimensional array in php

藏色散人
藏色散人Original
2021-07-02 09:55:051879browse

php method to delete duplicate elements in a two-dimensional array: first create a PHP sample file; then use the "public function a_array_unique($array){...}" method to delete duplicate elements in a two-dimensional array That’s it.

How to delete duplicate elements in a two-dimensional array in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

How to delete 2D in php Duplicate elements in array?

Very simple!

The code example is as follows:

//二维数组去掉重复值
 public function a_array_unique($array){
  $out = array();
 
  foreach ($array as $key=>$value) {
   if (!in_array($value, $out)){
    $out[$key] = $value;
   }
  }
 
  $out = array_values($out);
  return $out;
 }

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to delete duplicate elements in a two-dimensional array in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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