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?

#130191
nphp101
Member

function arrIndexLowerCase($arr = null){
$arr = array_change_key_case($arr,CASE_LOWER);
$newArr = $arr;
foreach ($arr as $k => $v){
if (is_array($v)){
$newArr[$k] = $this->arrIndexLowerCase($v);
}
}
return $newArr;
}