Answers for "php lowercase assoc array"

PHP
0

php lowercase assoc array

array_walk($yourArray, function(&$value)
{
  $value = strtolower($value);
});
Posted by: Guest on June-02-2020

Browse Popular Code Answers by Language