从密钥列表中获取数组中存在的可用值

时间:2013-08-08 17:37:25

标签: php arrays

我有这个数组:

$array = array('a' => 'value of a', 'b' => 'value of b', 'c' => 'value of c',
    'd' => 'value of d');

这个项目清单:

$items = array ('a' => 'value','b'=> 'value','c'=> 'value','d'=> 'value');

我想检查$ array中是否存在$ items的至少一个键,如果是,则返回一个包含一个/ availableones及其值的数组。

这是我到目前为止所尝试过的,但是无法做到正确:

if (array_key_exists('a', $array) || array_key_exists('b', $array)
    || array_key_exists('c', $array) || array_key_exists('d', $array)) { 
}

任何帮助将不胜感激。

感谢名单

4 个答案:

答案 0 :(得分:7)

您需要的是两个数组之间的键的交集。有一个很好的函数叫array_intersect_key()

http://php.net/manual/en/function.array-intersect-key.php

$array = array('a' => 'value of a', 'b' => 'value of b', 'c' => 'value of c', 'd' => 'value of d');
$items = array ('a' => 'value','b'=> 'value','c'=> 'value','d'=> 'value');

print_r(array_intersect_key($array, $items));

答案 1 :(得分:0)

这是你要找的吗?

function search_keys($needle, $haystack) {
    $matches = array();
    foreach($needle as $key => $value) {
        if(array_key_exists($key, $haystack)) {
            $maches[$key] = $haystack[$key];
        }
    }
    return $matches;
}

$matches = seach_keys($items, $array);

答案 2 :(得分:0)

创建一个这样的函数:

function check_keys ($items, $array){
    $return = false;
    foreach (array_keys($items) as $key){
        if (isset($array[$key])){
            $return = true;
            break;
       }
    }
    return $return;
}

这样称呼:

// returns true or false
var_dump (check_keys ($items, $array));

答案 3 :(得分:0)

你可能需要这样的东西

$array = array('a' => 'value of a', 'b' => 'value of b', 'c' => 'value of c', 'd' => 'value of d');
$items = array ('a' => 'value','b'=> 'value','c'=> 'value','d'=> 'value');

foreach($items as $key=>$value){
 if (array_key_exists($key,$array)){

  //your code

 }
}