Source Code:
(back to article)
<?php $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red"); $array2 = array("a" => "green", "yellow", "red"); $result = array_diff_uassoc($array1, $array2, "strcasecmp"); print_r($result); ?>
Result:
Report an issue