O exposto acima está correto se assumirmos que matrizes podem conter apenas cadeias, mas matrizes também podem conter outras matrizes. Também a função in_array () pode aceitar uma matriz para $ needle, portanto, strtolower ($ needle) não funcionará se $ needle for uma matriz e array_map ('strtolower', $ haystack) não funcionará se $ haystack contiver outras matrizes, mas resultará em "Aviso do PHP: strtolower () espera que o parâmetro 1 seja string, dado a matriz".
Exemplo:
$needle = array('p', 'H');
$haystack = array(array('p', 'H'), 'U');
Então, eu criei uma classe auxiliar com os métodos relevantes, para fazer verificações in_array () com diferenciação de maiúsculas e minúsculas. Também estou usando mb_strtolower () em vez de strtolower (), para que outras codificações possam ser usadas. Aqui está o código:
class StringHelper {
public static function toLower($string, $encoding = 'UTF-8')
{
return mb_strtolower($string, $encoding);
}
/**
* Digs into all levels of an array and converts all string values to lowercase
*/
public static function arrayToLower($array)
{
foreach ($array as &$value) {
switch (true) {
case is_string($value):
$value = self::toLower($value);
break;
case is_array($value):
$value = self::arrayToLower($value);
break;
}
}
return $array;
}
/**
* Works like the built-in PHP in_array() function — Checks if a value exists in an array, but
* gives the option to choose how the comparison is done - case-sensitive or case-insensitive
*/
public static function inArray($needle, $haystack, $case = 'case-sensitive', $strict = false)
{
switch ($case) {
default:
case 'case-sensitive':
case 'cs':
return in_array($needle, $haystack, $strict);
break;
case 'case-insensitive':
case 'ci':
if (is_array($needle)) {
return in_array(self::arrayToLower($needle), self::arrayToLower($haystack), $strict);
} else {
return in_array(self::toLower($needle), self::arrayToLower($haystack), $strict);
}
break;
}
}
}