Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I remove duplicate values from a multi-dimensional array in PHP?

Example array:

Array
(
    [0] => Array
	(
	    [0] => abc
	    [1] => def
	)

    [1] => Array
	(
	    [0] => ghi
	    [1] => jkl
	)

    [2] => Array
	(
	    [0] => mno
	    [1] => pql
	)

    [3] => Array
	(
	    [0] => abc
	    [1] => def
	)

    [4] => Array
	(
	    [0] => ghi
	    [1] => jkl
	)

    [5] => Array
	(
	    [0] => mno
	    [1] => pql
	)

)
share|improve this question

6 Answers

up vote 84 down vote accepted

Here is another, another way. No intermediate variables are saved.

We used this to de-duplicate results from a variety of overlapping queries.

$input = array_map("unserialize", array_unique(array_map("serialize", $input)));
share|improve this answer
4  
Mmm soo clean one liner.. +1 – talereader Mar 8 '12 at 12:48
1  
php should have a function to do that... but anyway this array_map is gold. I love it – Junior Mayhé Jul 2 '12 at 23:59
2  
This is a great on line function! Thank you for posting it. – Jim Jul 16 '12 at 19:49
Because of unserialize this is slower and slower the larger and more complex the array is. There is a reason I used array_intersect_key (half a year before this answer). – OIS Feb 8 at 23:00
thanks, works great :) – Santosh Pillai Feb 14 at 21:57
show 1 more comment

The user comments on the array_unique() documentation have many solutions to this. Here is one of them:

kenrbnsn at rbnsn dot com
27-Sep-2005 12:09

Yet another Array_Unique for multi-demensioned arrays. I've only tested this on two-demensioned arrays, but it could probably be generalized for more, or made to use recursion.

This function uses the serialize, array_unique, and unserialize functions to do the work.

    function multi_unique($array) {
        foreach ($array as $k=>$na)
            $new[$k] = serialize($na);
        $uniq = array_unique($new);
        foreach($uniq as $k=>$ser)
            $new1[$k] = unserialize($ser);
        return ($new1);
    }

This is from http://ca3.php.net/manual/en/function.array-unique.php#57202.

share|improve this answer

Another way. Will preserve keys as well.

function array_unique_multidimensional($input)
{
    $serialized = array_map('serialize', $input);
    $unique = array_unique($serialized);
    return array_intersect_key($input, $unique);
}
share|improve this answer

As i have such problem and i got 100% working solution of it For more detai visite:-http://rajendrasinh.co.cc

<?php

$arr="";

$arr[0]['id']=0;

$arr[0]['titel']="ABC";

$arr[1]['id']=1;

$arr[1]['titel']="DEF";

$arr[2]['id']=2;

$arr[2]['titel']="ABC";

$arr[3]['id']=3;

$arr[3]['titel']="XYZ";



echo "<pre>";

print_r($arr);

echo "unique*********************<br/>";

print_r(super_unique($arr,'titel'));



function super_unique($array,$key)

{

   $temp_array = array();

   foreach ($array as &$v) {

       if (!isset($temp_array[$v[$key]]))

       $temp_array[$v[$key]] =& $v;

   }

   $array = array_values($temp_array);

   return $array;



}



?>
share|improve this answer
I'm surprised no one has liked this function. This gives the ability to removed duplicates based upon 1 interior value (not the whole record). This is a great way to remove duplicate IP addresses from a log where there might be multiple connections on the same day. – doubleJ Sep 6 '12 at 15:29
This answers a different question. See here: stackoverflow.com/questions/4585208/… – OIS Feb 8 at 23:28

An easy to read solution, probably not the most efficient:

function arrayUnique($myArray){
    if(!is_array($myArray))
        return $myArray;

    foreach ($myArray as &$myvalue){
        $myvalue=serialize($myvalue);
    }

    $myArray=array_unique($myArray);

    foreach ($myArray as &$myvalue){
        $myvalue=unserialize($myvalue);
    }

    return $myArray;

} 
share|improve this answer

Try this : Logic is same as daveilers's answer but little lengthy.

$arr1  = Array (Array ( "abc","def"),
                Array ( "ghi","jkl"),
                Array ( "mno","pql"),
                Array ( "abc","def"),
                Array ( "ghi","jkl"),
                Array ( "mno","pql")
                );

$array1  = array();
foreach($arr1 as $key1=>$val1){
    $array1[$key1]  = serialize($val1);
}

$flp_arr  = array_flip(array_flip($array1));         
$res      = array_map("unserialize", $flp_arr);

echo "<pre>";
print_r($res);
share|improve this answer

protected by Community Oct 2 '12 at 15:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.