我有两个多维数组,看起来像这样:
Array
(
[0] => Array (
'id' => 3,
'other' => 'some string',
'timestamp' => 2000-01-01 00:00:00
),
[1] => Array (
'id' => 6,
'other' => 'another string',
'timestamp' => 1835-01-01 00:00:00
)
)
我正试图找出一种方法来确定哪些元素出现在一个数组中($b
),而不是另一个数组($a
)以及是否存在任何具有更改值的元素。如果$a
是:
Array
(
[0] => Array (
'id' => 3,
'other' => 'some string',
'timestamp' => 2000-01-01 00:00:00
)
)
和$b
是:
Array
(
[0] => Array (
'id' => 3,
'other' => 'some string',
'timestamp' => 2000-01-01 12:12:12
),
[1] => Array (
'id' => 4,
'other' => 'some string',
'timestamp' => 1900-01-01 01:12:23
)
)
然后该函数应返回:
Array
(
[0] => Array (
'id' => 3,
'other' => 'some string',
'timestamp' => 2000-01-01 12:12:12
),
[1] => Array (
'id' => 4,
'other' => 'some string',
'timestamp' => 1900-01-01 01:12:23
)
)
因为id = 3
的元素已更改(timestamp
字段),而id = 4
的元素是新的,并且不会出现在另一个数组中。
我一直试图用array_udiff
来做这件事,但我仍然不知道它是如何工作的(它似乎首先对两个数组进行排序,但那么它如何进行比较?)。 array_udiff
是正确的方法还是应该编写自定义函数?
答案 0 :(得分:2)
您可以使用array_udiff
并定义自己的比较回调。我假设两个阵列具有完全相同的结构。
您可以定义自己的回调函数,如下所示:
int comparison(Array $a, Array $b){
if ($a['id']==$b['id'] && $a['other']==$b['other'] && $a['timestamp']==$b['timestamp']){
return 0
}else{
return -1
}
}
如果第一个参数小于第二个参数,则回调函数必须返回一个负整数;一个正数,如果它更大;如果它相等则为0。然后,您可以返回任何不同的数字为0以表示参数不同,如果它们相等则为0。
最后,您应该致电array_udiff
,如下所示:
array_udiff($a, $b, 'comparison')
您将获得$a
的{{1}}元素列表,这些元素在$b
中没有或不同。
注意,如果你想比较2个数组,当其中一个元素的元素多于另一个时,你应该将数组作为第一个参数传递给新元素。
答案 1 :(得分:0)
array_udiff函数“data_compare_func”的返回是您定义的某个函数,但它必须返回小于,等于或大于零的整数,因此它可能不是您需要的正确函数。像这样的自定义函数应该可以满足您的需求:
// this function loops through both arrays to find a match in the other array
// it will skip entry comparisons when it goes through $arr2 because you already did it the first time
function find_diff($arr1, $arr2) {
$ret = array();
// we need to do two loops to find missing entries from both arrays
$ret = do_loop($arr1, $arr2, $ret, true);
$ret = do_loop($arr2, $arr1, $ret, false);
return $ret;
}
// this function does the looping though $arr1 to compare it to entries in $arr2
// you can skip entry comparison if $compare_entries is false
function do_loop($arr1, $arr2, $ret, $compare_entries = true) {
//look through all of $arr1 for same element in $arr2 based on $id
for ($i=0;$i<count($arr1);$i++) {
$id = $arr1[$i]['id'];
$found = false;
for ($j=0;$j<count($arr2);$j++) {
// id match found
if ($id == $arr2[$j]['id']) {
$found = true;
// only compare entries if you need to
if ($compare_entries) {
//check if other field is different
if (strcmp($arr1[$i]['other'],$arr2[$j]['other']) != 0) {
$ret = add_to_ret($arr1[$i], $ret);
break;
}
//check if timestamp field is different
if (strcmp($arr1[$i]['timestamp'],$arr2[$j]['timestamp']) != 0) {
$ret = add_to_ret($arr1[$i], $ret);
break;
}
} else {
break;
}
}
}
// entry from $arr1[$i] was not found in $arr2
if (!$found) {
$ret = add_to_ret($arr1[$i], $ret);
}
}
return $ret;
}
//this function only adds the new entry to $ret if it's ID isn't already in $ret
function add_to_ret($entry, $ret) {
$id = $entry['id'];
for ($i=0;$i<count($ret);$i++) {
if ($id == $ret[$i]['id']) {
//skip adding, its already in there
return $ret;
}
}
//add it in
$ret[] = $entry;
return $ret;
}