web-dev-qa-db-ja.com

in_array()と多次元配列

以下のように値が配列に存在するかどうかをチェックするために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()を使うべきではありませんか。

229
laukok

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';
449
jwueller

これもうまくいきます。

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

使用法:

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

どの列に対して検索するかがわかっている場合は、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()のコメントセクションにあります。

45
ethmz

これはそれを行います:

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

in_arrayは1次元配列でのみ機能するため、各サブ配列をループ処理してそれぞれでin_arrayを実行する必要があります。

他の人が指摘したように、これは2次元配列のためだけのものです。ネストした配列がもっと多い場合は、再帰的なバージョンのほうが良いでしょう。その例については他の答えを参照してください。

33
Alan Geleynse

あなたの配列がこのような場合

$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");

22
rynhe
$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';
}
13
Mukesh Goyal

偉大な機能ですが、elseifif($found) { break; }を追加するまではうまくいきませんでした。

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;
}
13
Fernando

多次元子供の場合:in_array('needle', array_column($arr, 'key'))

一次元の子供たちのために:in_array('needle', call_user_func_array('array_merge', $arr))

7

あなたはいつでもあなたの多次元配列をシリアライズしてstrposをすることができます:

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

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

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

私が使ったことのためのさまざまなドキュメント

6
user1846065

最近は 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
SrAxi

承認された解決策(執筆時点で)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"

"example"trueにキャストされ、0に変換されるため、intを評価します。

を参照してください。なぜPHPは0を文字列と等しいと見なしますか?

これが望ましい振る舞いではない場合、厳密ではない比較を行う前に数値をstringにキャストすると便利です。

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
Paolo

これが私の命題です=json_encode()ソリューションに基づいて:

  • 大文字と小文字を区別しないオプション
  • trueではなくカウントを返す
  • 配列内の任意の場所(キーと値)

Wordが見つからない場合でも、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);
}

それが役に立てば幸い。

1
Meloman

PHP 5.6から、元の答えに対してより良く、よりきれいな解決策があります。

このような多次元配列では、

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

スプラット演算子を使用できます。

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

データベースの結果セットに基づいて作成された多次元配列のための短いバージョン。

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
andreszs

私は配列(haystack)の中で文字列と配列の両方(針として)を検索できるようにする関数を探していたので、 の答えに追加@ 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
FreshSnow

私はこのメソッドをネストしたもののためにうまくいくように使った、そしてハッキングを必要としない

<?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;
        }
    }
0
Sr. Libre

元の配列から新しい一次元配列を最初に作成することもできます。

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

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

in_array($needle,$vector);
0
Banzy

これは phpマニュアルのin_array にあるこのタイプの最初の関数です。コメントセクションの関数は必ずしも最善ではありませんが、それがうまくいかない場合は、ここでも確認できます。

<?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;
    }
?>
0
Gazillion

私は本当に小さな簡単な解決策を見つけました:

もしあなたの配列が

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
Dhruv Thakkar