tableau d'assocme en minuscules PHP

array_walk($yourArray, function(&$value)
{
  $value = strtolower($value);
});
Poised Peccary