目录

PHP array_intersect_ukey() 函数

❮ PHP 数组参考

示例

比较两个数组(使用用户定义的键比较函数),并返回匹配项:

<?php
function myfunction($a,$b)
{
if ($a===$b)
  {
  return 0;
  }
  return ($a>$b)?1:-1;
}

$a1=array("a"=>"red","b"=>"green","c"=>"blue");
$a2=array("a"=>"blue","b"=>"black","e"=>"blue");

$result=array_intersect_ukey($a1,$a2,"myfunction");
print_r($result);
?>
亲自试一试 »

定义和用法

array_intersect_ukey() 函数比较按键两个(或多个)数组,并返回匹配项。

笔记:该函数使用用户定义的函数来比较按键!

此函数比较两个或多个数组的键,并返回一个包含以下条目的数组数组1存在于数组2,数组3, ETC。


语法

array_intersect_ukey( array1, array2, array3, ..., myfunction)

参数值

Parameter Description
array1 Required. The first array is the array that the others will be compared with
array2 Required. An array to be compared with the first array
array3,... Optional. An array to be compared with the first array
myfunction Required. A string that define a callable comparison function. The comparison function must return an integer <, =, or > than 0 if the first argument is <, =, or > than the second argument


技术细节

返回值: 返回一个包含条目的数组数组1存在于所有其他数组中
PHP 版本: 5.1.0+

更多示例

示例

比较三个数组(使用用户定义的函数来比较键),并返回匹配项:

<?php
function myfunction($a,$b)
{
if ($a===$b)
  {
  return 0;
  }
  return ($a>$b)?1:-1;
}

$a1=array("a"=>"red","b"=>"green","c"=>"blue");
$a2=array("a"=>"black","b"=>"yellow","d"=>"brown");
$a3=array("e"=>"purple","f"=>"white","a"=>"gold");

$result=array_intersect_ukey($a1,$a2,$a3,"myfunction");
print_r($result);
?>
亲自试一试 »

❮ PHP 数组参考