如果使用array_intersect()
函数时无效,可能有以下几个原因:
array_map()
函数将字符串转换为数字。$array1 = ['1', '2', '3'];
$array2 = [2, 3, 4];
$array1 = array_map('intval', $array1);
$result = array_intersect($array1, $array2);
print_r($result);
class Item {
private $id;
public function __construct($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
$item1 = new Item(1);
$item2 = new Item(2);
$item3 = new Item(3);
$array1 = [$item1, $item2];
$array2 = [$item2, $item3];
$result = array_intersect($array1, $array2);
print_r($result); // []
$result = array_uintersect($array1, $array2, function($a, $b) {
return $a->getId() <=> $b->getId();
});
print_r($result); // [$item2]
请确保比较的数据类型是一致的,并且按照您的需求使用适当的比较函数。