使用in_array
函数时,是否可以进行不区分大小写的比较?
所以使用这样的源数组:
$a= array(
'one',
'two',
'three',
'four'
);
以下查找都将返回true:
in_array('one', $a);
in_array('two', $a);
in_array('ONE', $a);
in_array('fOUr', $a);
哪些功能或一组功能会这样做?我认为in_array
本身不能做到这一点。
答案 0 :(得分:195)
显而易见的事情就是将搜索词转换为小写:
if (in_array(strtolower($word), $a) {
...
当然如果数组中有大写字母,您首先需要这样做:
$search_array = array_map('strtolower', $a);
并搜索。每次搜索都对整个阵列进行strtolower
没有意义。
然而,搜索数组是线性的。如果你有一个大阵列或者你要做很多事情,最好把搜索术语放在数组的键中,因为这将是很多更快的访问:
$search_array = array_combine(array_map('strtolower', $a), $a);
然后
if ($search_array[strtolower($word)]) {
...
这里唯一的问题是数组键必须是唯一的,所以如果你有碰撞(例如“一”和“一”),你将失去一个除了一个。
答案 1 :(得分:105)
function in_arrayi($needle, $haystack) {
return in_array(strtolower($needle), array_map('strtolower', $haystack));
}
答案 2 :(得分:92)
您可以使用preg_grep()
:
$a= array(
'one',
'two',
'three',
'four'
);
print_r( preg_grep( "/ONe/i" , $a ) );
答案 3 :(得分:47)
function in_arrayi($needle, $haystack) {
return in_array(strtolower($needle), array_map('strtolower', $haystack));
}
答案 4 :(得分:9)
假设您要使用in_array,以下是如何使搜索大小写不敏感。
不区分大小写in_array():
foreach($searchKey as $key => $subkey) {
if (in_array(strtolower($subkey), array_map("strtolower", $subarray)))
{
echo "found";
}
}
正常区分大小写:
foreach($searchKey as $key => $subkey) {
if (in_array("$subkey", $subarray))
{
echo "found";
}
}
答案 5 :(得分:2)
如果我们假设数组只能包含字符串,那么上面的说法是正确的,但数组也可以包含其他数组。此外,in_array()函数可以接受$ needle的数组,因此如果$ needle是一个数组,strtolower($ needle)将无法工作,如果$ haystack包含其他数据,则array_map('strtolower',$ haystack)将不起作用数组,但会导致“PHP警告:strtolower()期望参数1为字符串,给定数组”。
示例:
$needle = array('p', 'H');
$haystack = array(array('p', 'H'), 'U');
因此,我使用相关方法创建了一个帮助器类,以进行区分大小写和不区分大小写的in_array()检查。我也使用mb_strtolower()而不是strtolower(),因此可以使用其他编码。这是代码:
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;
}
}
}
答案 6 :(得分:1)
我写了一个简单的函数来检查代码在下面的数组中的不敏感值。
<强>功能强>
function in_array_insensitive($needle, $haystack) {
$needle = strtolower($needle);
foreach($haystack as $k => $v) {
$haystack[$k] = strtolower($v);
}
return in_array($needle, $haystack);
}
使用方法:
$array = array('one', 'two', 'three', 'four');
var_dump(in_array_insensitive('fOUr', $array));
答案 7 :(得分:0)
$a = [1 => 'funny', 3 => 'meshgaat', 15 => 'obi', 2 => 'OMER'];
$b = 'omer';
function checkArr($x,$array)
{
$arr = array_values($array);
$arrlength = count($arr);
$z = strtolower($x);
for ($i = 0; $i < $arrlength; $i++) {
if ($z == strtolower($arr[$i])) {
echo "yes";
}
}
};
checkArr($b, $a);
答案 8 :(得分:0)
/**
* in_array function variant that performs case-insensitive comparison when needle is a string.
*
* @param mixed $needle
* @param array $haystack
* @param bool $strict
*
* @return bool
*/
function in_arrayi($needle, array $haystack, bool $strict = false): bool
{
if (is_string($needle)) {
$needle = strtolower($needle);
foreach ($haystack as $value) {
if (is_string($value)) {
if (strtolower($value) === $needle) {
return true;
}
}
}
return false;
}
return in_array($needle, $haystack, $strict);
}
/**
* in_array function variant that performs case-insensitive comparison when needle is a string.
* Multibyte version.
*
* @param mixed $needle
* @param array $haystack
* @param bool $strict
* @param string|null $encoding
*
* @return bool
*/
function mb_in_arrayi($needle, array $haystack, bool $strict = false, ?string $encoding = null): bool
{
if (null === $encoding) {
$encoding = mb_internal_encoding();
}
if (is_string($needle)) {
$needle = mb_strtolower($needle, $encoding);
foreach ($haystack as $value) {
if (is_string($value)) {
if (mb_strtolower($value, $encoding) === $needle) {
return true;
}
}
}
return false;
}
return in_array($needle, $haystack, $strict);
}
答案 9 :(得分:0)
$user_agent = 'yandeX';
$bots = ['Google','Yahoo','Yandex'];
foreach($bots as $b){
if( stripos( $user_agent, $b ) !== false ) return $b;
}
答案 10 :(得分:-1)
$ a = array('one','two','three','four');
$ b = in_array('ONE',$ a,false);