Current File : //opt/RZphp83/includes/tests/PHP_Compat/tests/function/array_uintersect_assoc.phpt
--TEST--
Function -- array_uintersect_assoc
--SKIPIF--
<?php if (function_exists('array_uintersect_assoc')) { echo 'skip'; } ?>
--FILE--
<?php
require_once 'PHP/Compat.php';
PHP_Compat::loadFunction('array_uintersect_assoc');

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

print_r(array_uintersect_assoc($array1, $array2, 'strcasecmp'));
?>
--EXPECT--
Array
(
    [a] => green
)