PHP - Dizinin ana anahtar bul

2 Cevap php

Ben bir dizinin ana anahtarının değerini dönmek için bir yol bulmaya çalışıyorum.

For example, from the array below I'd like to find out the parent's key where $array['id'] == "0002". The parent key is obvious because it's defined here (it would be 'products'), but normally it'd be dynamic, hence the problem. The 'id' and value of 'id' is known though.

    [0] => Array
        (
            [data] => 
            [id] => 0000
            [name] => Swirl
            [categories] => Array
                (
                    [0] => Array
                        (
                            [id] => 0001
                            [name] => Whirl
                            [products] => Array 
                               (
                                    [0] => Array
                                        (
                                            [id] => 0002
                                            [filename] => 1.jpg
                                         )
                                    [1] => Array
                                        (
                                            [id] => 0003
                                            [filename] => 2.jpg
                                         )
                                )
                         )
                 )
          )

2 Cevap

Biraz ham yineleme, ama çalışması gerekir:

function find_parent($array, $needle, $parent = null) {
    foreach ($array as $key => $value) {
        if (is_array($value)) {
            $pass = $parent;
            if (is_string($key)) {
                $pass = $key;
            }
            $found = find_parent($value, $needle, $pass);
            if ($found !== false) {
                return $found;
            }
        } else if ($key === 'id' && $value === $needle) {
            return $parent;
        }
    }

    return false;
}

$parentkey = find_parent($array, '0002');

Ya bir BFS veya DFS bunu yapabilir bir ağaç yapısı var çünkü. Yapısı değişken olduğundan bir özyinelemeli çözüm iyi çalışır. Eğer değeri, o arayanı anahtarını iade bulduğunuzda sadece bir nöbetçi döndürür.