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

藏色散人
Release: 2023-03-11 07:28:01
Original
1905 people have browsed it

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;
 }
Copy after login

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!

Related labels:
php
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