How can I convert all values in an array to lowercase in PHP?
Something like array_change_key_case?
array_change_key_case
You could use array_map(), set the first parameter to 'strtolower' (including the quotes) and the second parameter to $lower_case_array.