array asosiasi kecil php

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