Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How to make array key lowercase? Re: How to make array key lowercase?

#130204
CrocoDillon
Participant

Old post but you don’t even need to copy the array

function array_change_key_case_recursive($input, $case = null) {
$case = $case ?: CASE_LOWER;
$input = array_change_key_case($input, $case);
foreach ($input as $key => $val) {
if (is_array($val))
$input[$key] = array_change_key_case_recursive($val, $case);
}
}