Answers for "php in_array lower case"

PHP
-1

php lowercase assoc array

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

lowercase in array php

array_walk($yourArray, function(&$value)
{
  $value = strtolower($value);
});
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language