array_uintersect_uassoc
array_uintersect_uassoc
Computes the intersection of arrays with additional index check, compares data and indexes by separate callback functions
array **array_uintersect_uassoc** array $array1 array $arrays callable $value_compare_func callable $key_compare_func
Computes the intersection of arrays with additional index check, compares data and indexes by separate callback functions.
array1The first array.
arraysFurther arrays.
value_compare_func``key_compare_funcKey comparison callback function.
Returns an array containing all the values of
that are present in all the arguments.
array1
Voorbeeld: example
<?php
$array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
$array2 = array("a" => "GREEN", "B" => "brown", "yellow", "red");
print_r(array_uintersect_uassoc($array1, $array2, "strcasecmp", "strcasecmp"));
?>
Array
(
[a] => green
[b] => brown
)
array_uintersect``array_intersect_assoc``array_intersect_uassoc``array_uintersect_assoc