PHP 中的 array_intersect_ukey() 函数

phpprogrammingserver side programming

array_intersect_ukey() 函数比较数组键,并进行额外的用户自定义函数检查,然后返回匹配项。该函数返回一个数组,其中包含第一个数组中存在于所有其他数组中的条目。

语法

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

参数

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

  • arr2 − 要比较的数组。必需。

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

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

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

返回

array_intersect_ukey() 函数返回一个数组,其中包含第一个数组中存在于所有其他数组中的条目。

示例

以下是比较键的示例。

<?php
function check($a,$b) {
   if ($a===$b) {
      return 0;
   }
   return ($a>$b)?1:-1;
}
$arr1 = array("a"=>"one","b"=>"two","c"=>"three");
$arr2 = array("a"=>"one","b"=>"two");
$result = array_intersect_ukey($arr1,$arr2,"check");
print_r($result);
?>

输出

Array
(
[a] => one
[b] => two
)

相关文章