in_array()和多维数组


243

in_array()过去经常检查数组中是否存在值,如下所示:

$a = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $a)) 
{
    echo "Got Irix";
}

//print_r($a);

但是多维数组(下)如何处理-如何检查该值是否存在于多维数组中?

$b = array(array("Mac", "NT"), array("Irix", "Linux"));

print_r($b);

还是我不应该使用in_array()多维数组?


1
公认的解决方案效果很好,但是由于PHP的类型变乱而在进行非严格比较时可能会导致意想不到的结果。请参阅:stackoverflow.com/a/48890256/1579327
Paolo,

1
jwueller的回答和我是正确的答案,你的问题。我提出了另一种解决方案,扩展了jwueller的功能,以避免在进行非严格比较时由于PHP的类型变乱而导致常见的pitfail。
Paolo

1
var_dump(array_sum(array_map(function ($tmp) {return in_array('NT',$tmp);}, $multiarray)) > 0);
一班

1
@AgniusVasiliauskas聪明的解决方案,但是如果第一级数组包含的内容不是数组,就会出现问题,例如:$multiarray = array( "Hello", array("Mac", "NT"), array("Irix", "Linux"));
Paolo

1
@Paolo没有人阻止您根据需要扩展匿名函数-在这种情况下,如果变量$tmp是具有is_array()函数的数组,请在匿名函数中添加检查。如果不是数组,请继续使用其他方案。
Agnius Vasiliauskas

Answers:


473

in_array()在多维数组上不起作用。您可以编写一个递归函数来为您做到这一点:

function in_array_r($needle, $haystack, $strict = false) {
    foreach ($haystack as $item) {
        if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
            return true;
        }
    }

    return false;
}

用法:

$b = array(array("Mac", "NT"), array("Irix", "Linux"));
echo in_array_r("Irix", $b) ? 'found' : 'not found';

1
谢谢。功能优雅!爱它!谢谢。我怎么知道它返回true或false,因为当我运行您的函数时屏幕没有显示任何内容?谢谢。
laukok 2010年

14
我一直在寻找能够做到这一点的方法,您只是使我免于编写自己的书:)
Liam W

1
效果很好。那么我们如何搜索和显示阵列键?例如:$ b = array(1 => array(“ Mac”,“ NT”),3 => array(“ Irix”,“ Linux”)));
拉沙德(Rashad)

2
StackOverflow上的@ D.Tate代码已获得cc by-sa 3.0的许可,并需要注明出处(请参阅页脚)。您只需在此答案的永久链接中添加评论即可。
jwueller

1
@blamb:这是非常故意的。这就是使函数递归的原因(因此,例如_r类似于print_r())。它下降到所有嵌套数组中以搜索值,直到找不到更多数组为止。这样,您可以搜索任意复杂度的数组,而不必搜索两个级别的数组。
jwueller

56

如果知道要搜索的列,则可以使用array_search()和array_column():

$userdb = Array
(
    (0) => Array
        (
            ('uid') => '100',
            ('name') => 'Sandra Shush',
            ('url') => 'urlof100'
        ),

    (1) => Array
        (
            ('uid') => '5465',
            ('name') => 'Stefanie Mcmohn',
            ('url') => 'urlof5465'
        ),

    (2) => Array
        (
            ('uid') => '40489',
            ('name') => 'Michael',
            ('url') => 'urlof40489'
        )
);

if(array_search('urlof5465', array_column($userdb, 'url')) !== false) {
    echo 'value is in multidim array';
}
else {
    echo 'value is not in multidim array';
}

这个想法在PHP手册的array_search()的注释部分中。


15
您也可以尝试:in_array('value',array_column($ arr,'active'))
ekstro

1
您需要使用PHP 5.5+array_column
meconroy

1
在此示例中是否可以获取匹配的子数组的uid?@ethmz
zipal_

这正是我想要的
Juned Ansari

长期找到此解决方案后,这是完美的!
Rohan Ashik '19

54

这也将起作用。

function in_array_r($item , $array){
    return preg_match('/"'.preg_quote($item, '/').'"/i' , json_encode($array));
}

用法:

if(in_array_r($item , $array)){
    // found!
}

3
聪明,我喜欢这个。我想知道与foreach循环相比性能如何。
詹姆斯,

1
像魅力一样工作。
kemicofa ghost

1
不要误会我的意思,在这种情况下,我喜欢这种方法。但是,当json_encoding $array具有匹配的关联密钥的json_encoding时,它将返回一个假正匹配$item。更不用说当字符串本身中有双引号时,可能会无意中匹配字符串的一部分。我只会在这种问题的小型/简单情况下相信此功能。
mickmackusa

请注意,如果$item包含会preg_match
Paolo

35

可以做到这一点:

foreach($b as $value)
{
    if(in_array("Irix", $value, true))
    {
        echo "Got Irix";
    }
}

in_array仅在一维数组上运行,因此您需要遍历每个子数组并在每个子数组上运行in_array

正如其他人指出的那样,这仅适用于二维数组。如果您有更多的嵌套数组,则使用递归版本会更好。有关示例,请参见其他答案。


7
但是,这仅在一维上起作用。您必须创建一个递归函数才能检查每个深度。
metrobalderas

我运行了代码,但是有一个错误-解析错误:在第21行的C:\ wamp \ www \ 000_TEST \ php \ php.in_array \ index.php中解析错误-这是if(in_array(“ Irix”,$ value )
laukok,2010年

@lauthiamkok:)在上述行的末尾缺少一个。
jwueller

谢谢,我确定了答案。当我打字太快并且不重新阅读代码时,就会发生这种情况。
艾伦·盖林斯

您应该始终in_array()在第三个参数设置为的情况下进行调用true。在这里查看原因:stackoverflow.com/questions/37080581/…–
Andreas

25

如果你的数组是这样的

$array = array(
              array("name" => "Robert", "Age" => "22", "Place" => "TN"), 
              array("name" => "Henry", "Age" => "21", "Place" => "TVL")
         );

用这个

function in_multiarray($elem, $array,$field)
{
    $top = sizeof($array) - 1;
    $bottom = 0;
    while($bottom <= $top)
    {
        if($array[$bottom][$field] == $elem)
            return true;
        else 
            if(is_array($array[$bottom][$field]))
                if(in_multiarray($elem, ($array[$bottom][$field])))
                    return true;

        $bottom++;
    }        
    return false;
}

例如: echo in_multiarray("22", $array,"Age");


21
$userdb = Array
(
    (0) => Array
        (
            ('uid') => '100',
            ('name') => 'Sandra Shush',
            ('url') => 'urlof100'
        ),

    (1) => Array
        (
            ('uid') => '5465',
            ('name') => 'Stefanie Mcmohn',
            ('url') => 'urlof5465'
        ),

    (2) => Array
        (
            ('uid') => '40489',
            ('name') => 'Michael',
            ('url') => 'urlof40489'
        )
);

$url_in_array = in_array('urlof5465', array_column($userdb, 'url'));

if($url_in_array) {
    echo 'value is in multidim array';
}
else {
    echo 'value is not in multidim array';
}

2
尽管此代码可以回答问题,但提供有关如何和/或为什么解决问题的其他上下文将提高​​答案的长期价值。
唐老鸭

3
6年后,它满足了我的需求。 array_column()
NappingRabbit

多维数组的完美答案
Roshan Sankhe

14

很棒的功能,但是直到我将新增if($found) { break; }elseif

function in_array_r($needle, $haystack) {
    $found = false;
    foreach ($haystack as $item) {
    if ($item === $needle) { 
            $found = true; 
            break; 
        } elseif (is_array($item)) {
            $found = in_array_r($needle, $item); 
            if($found) { 
                break; 
            } 
        }    
    }
    return $found;
}

11

对于多维儿童: in_array('needle', array_column($arr, 'key'))

对于一维儿童: in_array('needle', call_user_func_array('array_merge', $arr))


1
整齐!感谢@ 9ksoft
phaberest

与该array_column()方法不同的是,该call_user_func_array('array_merge')方法还适用于基于索引的子数组+1

6

您总是可以序列化多维数组并执行以下操作strpos

$arr = array(array("Mac", "NT"), array("Irix", "Linux"));

$in_arr = (bool)strpos(serialize($arr),'s:4:"Irix";');

if($in_arr){
    echo "Got Irix!";
}

我使用过的各种文档:


1
那就错了 如果搜索字符串包含在某个数组值中,则您的函数也将为true(将在“ mytoll Irixus”中找到“ Irix”)。
mdunisch 2014年

我已经解决了。@ user3351722

这种方法可以解决一个问题,当不再有一个(唯一的谷),并且它是动态的..像这样的$ in_arr =(bool)strpos(serialize($ user_term_was_downloaded),'s:3:“ tid”; s: 2:“'。$ value-> tid。'”;');
Anees Hikmat Abu Hmiad 2014年

2
@ I--II认为如果Stack Overflow上的任何人都不希望共享代码,他们不会发布代码。随时使用本网站上的任何代码。我通常在代码段上方添加一行注释,表示“谢谢堆栈溢出”,然后粘贴从中找到代码的URL。

1
有趣的答案肯定在某些情况下有效,但并非全部。
MKN Web Solutions 2015年

4

PHP 5.6开始,有一个更好,更干净的解决方案用于原始答案:

使用这样的多维数组:

$a = array(array("Mac", "NT"), array("Irix", "Linux"))

我们可以使用splat运算符

return in_array("Irix", array_merge(...$a), true)

如果您有这样的字符串键:

$a = array("a" => array("Mac", "NT"), "b" => array("Irix", "Linux"))

您将不得不使用array_values以避免错误Cannot unpack array with string keys

return in_array("Irix", array_merge(...array_values($a)), true)

2

接受溶液(在写入时)通过jwueller

function in_array_r($needle, $haystack, $strict = false) {
    foreach ($haystack as $item) {
        if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
            return true;
        }
    }

    return false;
}

是完全正确的,但在进行弱比较(参数$strict = false)时可能会有意想不到的行为。

由于PHP在比较两个不同类型的值时会发生类型混乱

"example" == 0

0 == "example"

进行评估,true因为"example"被强制int转换为0

(请参阅为什么PHP认为0等于字符串?

如果这不是所需的行为,则在进行非严格比较之前将数字值转换为字符串会很方便:

function in_array_r($needle, $haystack, $strict = false) {
    foreach ($haystack as $item) {

        if( ! $strict && is_string( $needle ) && ( is_float( $item ) || is_int( $item ) ) ) {
            $item = (string)$item;
        }

        if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
            return true;
        }
    }

    return false;
}

1

这是我在in_arrayphp手册中找到的这种类型的第一个函数。注释部分中的功能并不总是最好的,但是如果不能解决问题,您也可以在这里查看:)

<?php
function in_multiarray($elem, $array)
    {
        // if the $array is an array or is an object
         if( is_array( $array ) || is_object( $array ) )
         {
             // if $elem is in $array object
             if( is_object( $array ) )
             {
                 $temp_array = get_object_vars( $array );
                 if( in_array( $elem, $temp_array ) )
                     return TRUE;
             }

             // if $elem is in $array return true
             if( is_array( $array ) && in_array( $elem, $array ) )
                 return TRUE;


             // if $elem isn't in $array, then check foreach element
             foreach( $array as $array_element )
             {
                 // if $array_element is an array or is an object call the in_multiarray function to this element
                 // if in_multiarray returns TRUE, than return is in array, else check next element
                 if( ( is_array( $array_element ) || is_object( $array_element ) ) && $this->in_multiarray( $elem, $array_element ) )
                 {
                     return TRUE;
                     exit;
                 }
             }
         }

         // if isn't in array return FALSE
         return FALSE;
    }
?>

难以捉摸的解决方案更好,因为它仅适用于阵列
Gazillion

1

这是我基于json_encode()解决方案的主张:

  • 不区分大小写的选项
  • 返回计数而不是true
  • 数组中的任何位置(键和值)

如果没有找到单词,它仍然返回0等于false

function in_array_count($needle, $haystack, $caseSensitive = true) {
    if(!$caseSensitive) {
        return substr_count(strtoupper(json_encode($haystack)), strtoupper($needle));
    }
    return substr_count(json_encode($haystack), $needle);
}

希望能帮助到你。


请注意,此函数也匹配子字符串:ex 00into 10000lointo Hello。而且将失败的是指针包含任何json_encode转义的字符,例如双引号。
Paolo

当然,这取决于您将要执行的操作,但是对我来说,此解决方案具有快速的执行力并且足够了。
Meloman '18

1

我相信您现在可以使用array_key_exists

<?php
$a=array("Mac"=>"NT","Irix"=>"Linux");
if (array_key_exists("Mac",$a))
  {
  echo "Key exists!";
  }
else
  {
  echo "Key does not exist!";
  }
?>

1

我一直在寻找一个可以让我在数组(干草堆)中搜索字符串和数组(作为针)的函数,因此我在@jwueller答案中添加了该函数

这是我的代码:

/**
 * Recursive in_array function
 * Searches recursively for needle in an array (haystack).
 * Works with both strings and arrays as needle.
 * Both needle's and haystack's keys are ignored, only values are compared.
 * Note: if needle is an array, all values in needle have to be found for it to
 * return true. If one value is not found, false is returned.
 * @param  mixed   $needle   The array or string to be found
 * @param  array   $haystack The array to be searched in
 * @param  boolean $strict   Use strict value & type validation (===) or just value
 * @return boolean           True if in array, false if not.
 */
function in_array_r($needle, $haystack, $strict = false) {
     // array wrapper
    if (is_array($needle)) {
        foreach ($needle as $value) {
            if (in_array_r($value, $haystack, $strict) == false) {
                // an array value was not found, stop search, return false
                return false;
            }
        }
        // if the code reaches this point, all values in array have been found
        return true;
    }

    // string handling
    foreach ($haystack as $item) {
        if (($strict ? $item === $needle : $item == $needle)
            || (is_array($item) && in_array_r($needle, $item, $strict))) {
            return true;
        }
    }
    return false;
}

0

它也可以首先从原始数组创建新的一维数组。

$arr = array("key1"=>"value1","key2"=>"value2","key3"=>"value3");

foreach ($arr as $row)  $vector[] = $row['key1'];

in_array($needle,$vector);

0

较短的版本,用于基于数据库结果集创建的多维数组。

function in_array_r($array, $field, $find){
    foreach($array as $item){
        if($item[$field] == $find) return true;
    }
    return false;
}

$is_found = in_array_r($os_list, 'os_version', 'XP');

如果$ os_list数组在os_version字段中包含“ XP”,则将返回。


0

我发现了非常小的简单解决方案:

如果您的数组是:

Array
(
[details] => Array
    (
        [name] => Dhruv
        [salary] => 5000
    )

[score] => Array
    (
        [ssc] => 70
        [diploma] => 90
        [degree] => 70
    )

)

那么代码将是这样的:

 if(in_array("5000",$array['details'])){
             echo "yes found.";
         }
     else {
             echo "no not found";
          }

0

我使用此方法适用于任意数量的嵌套,不需要黑客入侵

<?php
    $blogCategories = [
        'programing' => [
            'golang',
            'php',
            'ruby',
            'functional' => [
                'Erlang',
                'Haskell'
            ]
        ],
        'bd' => [
            'mysql',
            'sqlite'
        ]
    ];
    $it = new RecursiveArrayIterator($blogCategories);
    foreach (new RecursiveIteratorIterator($it) as $t) {
        $found = $t == 'Haskell';
        if ($found) {
           break;
        }
    }

-1

请尝试:

in_array("irix",array_keys($b))
in_array("Linux",array_keys($b["irix"])

我不确定需求,但这可能符合您的要求


2
搜索数组键怎么做?$b的数组键只是整数...在这些数组中没有指定的键...并且array_keys($b["irix"])只会抛出错误,因为$b["irix"]不存在。
Ben D


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.