객체에 대한 array_unique와 같은 방법이 있습니까? 병합하는 ‘역할’개체가있는 배열이 많이 있고 중복 항목을 제거하고 싶습니다. 🙂
답변
음, array_unique()
요소의 문자열 값을 비교합니다.
참고 :
(string) $elem1 === (string) $elem2
문자열 표현이 동일한 경우에만 두 요소가 동일한 것으로 간주 됩니다. 첫 번째 요소가 사용됩니다.
따라서 __toString()
클래스 에서 메소드 를 구현하고 동일한 역할에 대해 동일한 값을 출력 하는지 확인하십시오.
class Role {
private $name;
//.....
public function __toString() {
return $this->name;
}
}
이름이 같으면 두 역할을 동일한 것으로 간주합니다.
답변
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
경고 : 엄격한 비교 ( “===”)가 아닌 “==”비교를 사용합니다.
따라서 객체 배열 내에서 중복을 제거하려면 객체 ID (인스턴스)를 비교하는 것이 아니라 각 객체 속성을 비교해야합니다.
답변
답변
배열에서 중복 된 객체를 제거하는 방법은 다음과 같습니다.
<?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);
답변
먼저 직렬화 할 수도 있습니다.
$unique = array_map( 'unserialize', array_unique( array_map( 'serialize', $array ) ) );
PHP 5.2.9부터는 선택 사항 만 사용할 수 있습니다 sort_flag SORT_REGULAR
.
$unique = array_unique( $array, SORT_REGULAR );
답변
특정 속성을 기반으로 객체를 필터링하려는 경우 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;
});
답변
여기에서 : 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);
}
?>