让我们继续。为什么array_udiff比较sorting之后的第一个数组的值?
$compare = function($a, $b) use(&$iteration_count)
{
echo("$a : $b\n");
$iteration_count++;
return strcmp($a, $b);
};
$a = array('a', 'b', 'c');
$b = array('x', 'y', 'z');
$iteration_count = 0;
echo "array_udiff:" . json_encode(array_udiff($a, $b, $compare)) . "\n";
echo "iterations: $iteration_count\n\n";
输出
b : a // sorting $a started
c : b
y : x // sorting $b started
z : y
a : x // comparison started
a : b // -- what for?
b : x
b : c // -- what for?
c : x
array_udiff:["a","b","c"]
iterations: 9
答案 0 :(得分:2)
在对A[0]
和B[0]
进行比较后,它会跳过A
中等于A[0]
的所有值,因为B
没有A[1]
值;见here。
要执行此操作,必须至少将A[0]
与$a = array('a', 'a', 'b', 'c');
进行比较;您可以通过在第一个数组中进行小的更改来观察此行为:
...
a : x
a : a <-- *
a : b
b : x
b : c
c : x
输出:
{{1}}