Quanto sopra è corretto se assumiamo che le matrici possano contenere solo stringhe, ma le matrici possono contenere anche altre matrici. Anche la funzione in_array () può accettare un array per $ ago, quindi strtolower ($ ago) non funzionerà se $ ago è un array e array_map ('strtolower', $ haystack) non funzionerà se $ haystack contiene altri array, ma genererà "Avviso PHP: strtolower () prevede che il parametro 1 sia stringa, array dato".
Esempio:
$needle = array('p', 'H');
$haystack = array(array('p', 'H'), 'U');
Così ho creato una classe di supporto con i metodi pertinenti, per effettuare controlli in_array () sensibili al maiuscolo / minuscolo. Sto anche usando mb_strtolower () invece di strtolower (), quindi è possibile utilizzare altre codifiche. Ecco il codice:
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;
}
}
}