PHP Lower Crases Assage Array

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