简体   繁体   中英

recursive search an array on the basis of key in php

I need a php function that will recursively search an array on the basis of key I provided. and want to get an array as return output containing all the values those are mapped with the searched key.

For eg:

[Case] => Array
    (
        [0] => Array
            (
                [CASE_ID] => 2233
                [CHECK_ID] => 57
                [CLIENT_ID] => 78
            )
        [2] => Array
            (
                [CASE_ID] => 9542
                [CHECK_ID] => 45
                [CLIENT_ID] => 18
            )
     )

If I would pass this array and key CHECK_ID , then it should return me an array containing 57,45 . Kindly ask if you need more explanation. Thanks in Advance.

Walking the array and chucking found keys into a new one:

function find_matches($array, $value) {
    $found = array();
    array_walk_recursive($array,
        function ($item, $key) use ($value, &$found) {
            if ($value === $key) {
                $found[] = $item;
            }
        }
    );
    return $found;
}

see http://codepad.viper-7.com/dVmYOT

Have you also considered using find('list') with a fields condition restriction?

Just check each element, filter based on key, convert the outcome to an array:

$filter = function($c, $key) {
    return $key === 'CHECK_ID';
};
$filtered = new CallbackFilterIterator(
    new RecursiveIteratorIterator(
        new RecursiveArrayIterator($array)
    ),
    $filter
);
var_dump(iterator_to_array($filtered, false));

Result:

array(2) {
  [0] =>
  int(57)
  [1] =>
  int(45)
}
function array_rfind($find, $arr) {
  $found = array();
  foreach($arr as $key => $val) {
    if($key == $find)
      $found[] = $val;
    elseif(is_array($val))
      $found = array_merge($found, array_rfind($find, $val));
  }
  return $found;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM