Home  >  Article  >  Backend Development  >  array_udiff的不解

array_udiff的不解

WBOY
WBOYOriginal
2016-06-13 11:44:33999browse

array_udiff的困惑
今天看书,书中有一个例子用到了array_udiff,查了下手册,经过测试,还是对其一知半解.

$a = array(1,2,3,4,5);
$b = array(1,6,3,4,5);
echo "
";
print_r(array_udiff($a,$b,function($a,$b){
return ($a === $b)? 0:1;
}));

我希望的得到的结果:
Array
(
[0] => 2
)

实际结果
Array
(
[0] => 1
[1] => 2
[2] => 3
[4] => 5
)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn