Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

array_udiff_assoc

Description

The array_udiff_assoc of Array for PHP computes the difference of arrays with additional index check, compares data by a callback function.

Syntax

array_udiff_assoc ( array $array1 , array $array2 [, array $... ], callable $value_compare_func ) : array

Parameters

array1

The first array.

array2

The second array.

value_compare_func

The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second.

callback ( mixed $a, mixed $b ) : int

Return

array_udiff_assoc() returns an array containing all the values from array1 that are not present in any of the other arguments. Note that the keys are used in the comparison unlike array_diff() and array_udiff(). The comparison of arrays' data is performed by using an user-supplied callback. In this aspect the behaviour is opposite to the behaviour of array_diff_assoc() which uses internal function for comparison.

Examples

1 · array1 array2 value_compare_func

<?

function myfunction($a, $b)
{
    if ($a < $b) {
        return -1;
    } elseif ($a > $b) {
        return 1;
    } else {
        return 0;
    }
}

$array1 = array("a" => 0, "b" => 1, "c" => 2, "d" => 3);
$array2 = array("a" => 0, "b" => 4, "e" => 2, "f" => 5);
$value_compare_func = "myfunction";

$return = array_udiff_assoc($array1, $array2, $value_compare_func);

print_r($return);

?>
Array
(
    [b] => 1
    [c] => 2
    [d] => 3
)

2 · ...

<?

function myfunction($a, $b)
{
    if ($a < $b) {
        return -1;
    } elseif ($a > $b) {
        return 1;
    } else {
        return 0;
    }
}

$array1 = array("a" => 0, "b" => 1, "c" => 2, "d" => 3);
$array2 = array("a" => 0, "b" => 4, "e" => 2, "f" => 5);
$array3 = array("a" => 0, "b" => 4, "e" => 2, "f" => 5);
$value_compare_func = "myfunction";

$return = array_udiff_assoc($array1, $array2, $array3, $value_compare_func);

print_r($return);

?>
Array
(
    [b] => 1
    [c] => 2
    [d] => 3
)
HomeMenu