对象的array_unique?

时间:2010-03-11 16:06:06

标签: php arrays methods

是否有像array_unique这样的对象方法?我有一堆带有'Role'对象的数组,我合并了,然后我想取出重复项:)

13 个答案:

答案 0 :(得分:132)

array_unique使用 SORT_REGULAR 处理一系列对象:

class MyClass {
    public $prop;
}

$foo = new MyClass();
$foo->prop = 'test1';

$bar = $foo;

$bam = new MyClass();
$bam->prop = 'test2';

$test = array($foo, $bar, $bam);

print_r(array_unique($test, SORT_REGULAR));

将打印:

Array (
    [0] => MyClass Object
        (
            [prop] => test1
        )

    [2] => MyClass Object
        (
            [prop] => test2
        )
)

在此处查看此行动:http://3v4l.org/VvonH#v529

警告:它会使用“==”比较,而不是严格比较(“===”)。

因此,如果要删除对象数组中的重复项,请注意它将比较每个对象属性,而不是比较对象标识(实例)。

答案 1 :(得分:81)

好吧,array_unique()比较元素的字符串值:

  

注意:当且仅当(string) $elem1 === (string) $elem2时,两个元素被认为是相等的,即当字符串表示相同时,将使用第一个元素。

因此,请确保在您的类中实现__toString()方法,并为相等的角色输出相同的值,例如

class Role {
    private $name;

    //.....

    public function __toString() {
        return $this->name;
    }

}

如果它们具有相同的名称,则会认为这两个角色相等。

答案 2 :(得分:27)

此答案使用in_array(),因为PHP 5中comparing objects的性质允许我们这样做。利用此对象比较行为要求数组包含对象,但这似乎就是这种情况。

$merged = array_merge($arr, $arr2);
$final  = array();

foreach ($merged as $current) {
    if ( ! in_array($current, $final)) {
        $final[] = $current;
    }
}

var_dump($final);

答案 3 :(得分:14)

以下是一种删除数组中重复对象的方法:

<?php
// Here is the array that you want to clean of duplicate elements.
$array = getLotsOfObjects();

// Create a temporary array that will not contain any duplicate elements
$new = array();

// Loop through all elements. serialize() is a string that will contain all properties
// of the object and thus two objects with the same contents will have the same
// serialized string. When a new element is added to the $new array that has the same
// serialized value as the current one, then the old value will be overridden.
foreach($array as $value) {
    $new[serialize($value)] = $value;
}

// Now $array contains all objects just once with their serialized version as string.
// We don't care about the serialized version and just extract the values.
$array = array_values($new);

答案 4 :(得分:8)

您还可以先序列化:

$unique = array_map( 'unserialize', array_unique( array_map( 'serialize', $array ) ) );

从PHP 5.2.9起,您可以使用可选的sort_flag SORT_REGULAR

$unique = array_unique( $array, SORT_REGULAR );

答案 5 :(得分:8)

如果要根据特定属性过滤对象,也可以使用它们的array_filter函数:

//filter duplicate objects
$collection = array_filter($collection, function($obj)
{
    static $idList = array();
    if(in_array($obj->getId(),$idList)) {
        return false;
    }
    $idList []= $obj->getId();
    return true;
});

答案 6 :(得分:6)

从这里开始:http://php.net/manual/en/function.array-unique.php#75307

这个也适用于对象和数组。

<?php
function my_array_unique($array, $keep_key_assoc = false)
{
    $duplicate_keys = array();
    $tmp         = array();       

    foreach ($array as $key=>$val)
    {
        // convert objects to arrays, in_array() does not support objects
        if (is_object($val))
            $val = (array)$val;

        if (!in_array($val, $tmp))
            $tmp[] = $val;
        else
            $duplicate_keys[] = $key;
    }

    foreach ($duplicate_keys as $key)
        unset($array[$key]);

    return $keep_key_assoc ? $array : array_values($array);
}
?>

答案 7 :(得分:2)

如果您有一个对象索引数组,并且想通过比较每个对象中的特定属性来删除重复项,则可以使用下面的remove_duplicate_models()之类的函数。

class Car {
    private $model;

    public function __construct( $model ) {
        $this->model = $model;
    }

    public function get_model() {
        return $this->model;
    }
}

$cars = [
    new Car('Mustang'),
    new Car('F-150'),
    new Car('Mustang'),
    new Car('Taurus'),
];

function remove_duplicate_models( $cars ) {
    $models = array_map( function( $car ) {
        return $car->get_model();
    }, $cars );

    $unique_models = array_unique( $models );

    return array_values( array_intersect_key( $cars, $unique_models ) );
}

print_r( remove_duplicate_models( $cars ) );

结果是:

Array
(
    [0] => Car Object
        (
            [model:Car:private] => Mustang
        )

    [1] => Car Object
        (
            [model:Car:private] => F-150
        )

    [2] => Car Object
        (
            [model:Car:private] => Taurus
        )

)

答案 8 :(得分:1)

这是非常简单的解决方案:

$ids = array();

foreach ($relate->posts as $key => $value) {
  if (!empty($ids[$value->ID])) { unset($relate->posts[$key]); }
  else{ $ids[$value->ID] = 1; }
}

答案 9 :(得分:0)

如果您需要从数组中过滤重复的实例(即“===”比较),那么

理智且快速的方式:

  • 您确定哪个数组只包含对象
  • 你不需要保存密钥

是:

//sample data
$o1 = new stdClass;
$o2 = new stdClass;
$arr = [$o1,$o1,$o2];

//algorithm
$unique = [];
foreach($arr as $o){
  $unique[spl_object_hash($o)]=$o;
}
$unique = array_values($unique);//optional - use if you want integer keys on output

答案 10 :(得分:0)

这是我用简单属性比较对象的方法,同时接收一个唯一的集合:

class Role {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

$roles = [
    new Role('foo'),
    new Role('bar'),
    new Role('foo'),
    new Role('bar'),
    new Role('foo'),
    new Role('bar'),
];

$roles = array_map(function (Role $role) {
    return ['key' => $role->getName(), 'val' => $role];
}, $roles);

$roles = array_column($roles, 'val', 'key');

var_dump($roles);

将输出:

array (size=2)
  'foo' => 
    object(Role)[1165]
      private 'name' => string 'foo' (length=3)
  'bar' => 
    object(Role)[1166]
      private 'name' => string 'bar' (length=3)

答案 11 :(得分:0)

如果您有对象数组,并且想要过滤此集合以删除所有重复项,则可以将array_filter与匿名函数一起使用:

$myArrayOfObjects = $myCustomService->getArrayOfObjects();

// This is temporary array
$tmp = [];
$arrayWithoutDuplicates = array_filter($myArrayOfObjects, function ($object) use (&$tmp) {
    if (!in_array($object->getUniqueValue(), $tmp)) {
        $tmp[] = $object->getUniqueValue();
        return true;
    }
    return false;
});

重要提示:请记住,您必须传递$tmp数组作为对过滤器回调函数的引用,否则它将不起作用

答案 12 :(得分:-1)

array_unique通过将元素转换为字符串并进行比较来工作。除非您的对象唯一地转换为字符串,否则它们将无法与array_unique一起使用。

相反,为对象实现有状态比较函数,并使用array_filter抛出函数已经看到的东西。