PHP 中的 array_intersect_uassoc() 函数

phpprogrammingserver side programming

array_intersect_unassoc() 函数比较数组键和值,并进行额外的用户自定义函数检查,然后返回匹配项。

语法

array_intersect_unassoc(arr1, arr2, arr3, arr4, …, compare_func)

参数

  • arr1 − 要比较的数组。必填项。

  • arr2 − 要比较的数组。必填项。

  • arr3 − 您可以添加更多数组进行比较。可选。

  • arr4 − 您可以添加更多数组进行比较。可选。

  • compare_func − 如果第一个参数被认为分别为 <、= 或 > 而不是第二个参数,则此回调函数必须返回一个整数 <、= 或 > 而不是 0。

返回

array_intersect_uassoc() 函数返回一个数组,其中包含第一个数组中不存在于任何其他数组中的条目。

示例

<?php
function compare_func($a, $b) {
   if ($a === $b) {
      return 0;
   }
   return ($a > $b)? 1:-1;
}
$arr1 = array("a" => "laptop", "b" => "keyboard", "c" => "mouse");
$arr2 = array("d" => "laptop", "b" => "keyboard", "c" => "mouse");
$res = array_intersect_uassoc($arr1, $arr2, "compare_func");
print_r($res);
?>

输出

Array ( [b] => keyboard [c] => mouse )

相关文章