Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: array_uintersect - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

array_unique" width="11" height="7"/> <array_uintersect_uassoc
Last updated: Thu, 31 May 2007

view this page in

array_uintersect

(PHP 5)

array_uintersect — データの比較にコールバック関数を用い、配列の共通項を計算する

説明

array array_uintersect ( array $array1, array $array2 [, array $ ..., callback $data_compare_func] )

array_uintersect() は、他の全ての引数に存在する array1 の値を全て有する配列を返します。 データはコールバック関数を用いて比較されます。

例 281. array_uintersect() の例

<?php
$array1
= array("a" => "green", "b" => "brown", "c" => "blue", "red");
$array2 = array("a" => "GREEN", "B" => "brown", "yellow", "red");

print_r(array_uintersect($array1, $array2, "strcasecmp"));
?>

上の例の出力は以下となります。


Array
(
    [a] => green
    [b] => brown
    [0] => red
)

    

比較は、ユーザが指定したコールバック関数を利用して行われます。 この関数は、1 つめの引数が 2 つめより小さい / 等しい / 大きい 場合にそれぞれ 負の数 / ゼロ / 正の数 を返す必要があります。

array_intersect()array_uintersect_assoc()array_intersect_uassoc() および array_uintersect_uassoc() も参照ください。



add a note add a note User Contributed Notes
array_uintersect
Nate at RuggFamily dot com
03-Feb-2007 05:03
I want to stress that in the user function, you do need to return either a 1 or a -1 properly; you cannot simply return 0 if the results are equal and 1 if they are not. 

The following code is incorrect:

<?php
function myfunction($v1,$v2)
{
if (
$v1===$v2)
    {
    return
0;
    }
return
1;
}

$a1=array(1, 2, 4);
$a2=array(1, 3, 4);
print_r(array_uintersect($a1,$a2,"myfunction"));
?>

This code is correct:

<?php
function myfunction($v1,$v2)
{
if (
$v1===$v2)
    {
    return
0;
    }
if (
$v1 > $v2) return 1;
return -
1;
}
$a1=array(1, 2, 4);
$a2=array(1, 3, 4);
print_r(array_uintersect($a1,$a2,"myfunction"));
?>

 
show source | credits | sitemap | contact | advertising | mirror sites