Please answer this simple SPAM challenge: max(two, five)? (Example: nine)
Case insensitive; will keep first encountered value. <?php function array_iunique($array) { $lowered = array_map('strtolower', $array); return array_intersect_key($array, array_unique($lowered)); } ?>
<< Back to user notes page