102

我有各种各样的数组,它们要么包含

story & message

要不就

story

我将如何检查数组是否同时包含故事和消息? array_key_exists()仅在数组中查找该单个键。

有没有办法做到这一点?

4

21 回答 21

209

这是一个可扩展的解决方案,即使您想检查大量密钥:

<?php

// The values in this arrays contains the names of the indexes (keys) 
// that should exist in the data array
$required = array('key1', 'key2', 'key3');

$data = array(
    'key1' => 10,
    'key2' => 20,
    'key3' => 30,
    'key4' => 40,
);

if (count(array_intersect_key(array_flip($required), $data)) === count($required)) {
    // All required keys exist!
}
于 2013-08-15T09:56:08.147 回答
87

如果您只有 2 个要检查的键(如在原始问题中),则只需调用array_key_exists()两次即可检查键是否存在可能很容易。

if (array_key_exists("story", $arr) && array_key_exists("message", $arr)) {
    // Both keys exist.
}

然而,这显然不能很好地扩展到许多键。在这种情况下,自定义函数会有所帮助。

function array_keys_exists(array $keys, array $arr) {
   return !array_diff_key(array_flip($keys), $arr);
}
于 2012-11-01T01:02:10.787 回答
34

居然array_keys_exist不存在?!在此期间,留出一些空间来为这个常见任务找出单行表达式。我正在考虑一个shell脚本或另一个小程序。

注意:以下每个解决方案都使用[…]php 5.4+ 中可用的简洁数组声明语法

数组差异+数组键

if (0 === count(array_diff(['story', 'message', '…'], array_keys($source)))) {
  // all keys found
} else {
  // not all
}

(给Kim Stacks的帽子小费)

这种方法是我发现的最简短的。返回参数 1 中不array_diff()存在于参数 2 中的项目数组。因此,一个空数组表示找到了所有键。在 php 5.5 中,您可以简化为简单的 .0 === count(…)empty(…)

array_reduce +未设置

if (0 === count(array_reduce(array_keys($source), 
    function($in, $key){ unset($in[array_search($key, $in)]); return $in; }, 
    ['story', 'message', '…'])))
{
  // all keys found
} else {
  // not all
}

更难阅读,更容易改变。array_reduce()使用回调来遍历数组以达到一个值。通过输入我们对 的$initial值感兴趣的键$in,然后删除在源中找到的键,如果找到所有键,我们可以期望以 0 元素结尾。

由于我们感兴趣的键非常适合底线,因此该结构很容易修改。

array_filter & in_array

if (2 === count(array_filter(array_keys($source), function($key) { 
        return in_array($key, ['story', 'message']); }
    )))
{
  // all keys found
} else {
  // not all
}

编写起来比array_reduce解决方案更简单,但编辑起来有点棘手。array_filter也是一个迭代回调,允许您通过在回调中返回 true(将项目复制到新数组)或 false(不复制)来创建过滤数组。gotchya 是您必须更改2为您期望的项目数。

这可以变得更耐用,但可读性很荒谬:

$find = ['story', 'message'];
if (count($find) === count(array_filter(array_keys($source), function($key) use ($find) { return in_array($key, $find); })))
{
  // all keys found
} else {
  // not all
}
于 2014-04-22T04:51:42.013 回答
16

在我看来,到目前为止最简单的方法是:

$required = array('a','b','c','d');

$values = array(
    'a' => '1',
    'b' => '2'
);

$missing = array_diff_key(array_flip($required), $values);

印刷:

Array(
    [c] => 2
    [d] => 3
)

这也允许检查确切缺少哪些键。这可能对错误处理很有用。

于 2014-07-20T10:43:59.687 回答
13

另一种可能的解决方案:

if (!array_diff(['story', 'message'], array_keys($array))) {
    // OK: all the keys are in $array
} else {
   // FAIL: some keys are not
}
于 2015-12-24T15:23:02.667 回答
7

上述解决方案很聪明,但速度很慢。使用 isset 的简单 foreach 循环比解决方案快两倍多array_intersect_key

function array_keys_exist($keys, $array){
    foreach($keys as $key){
        if(!array_key_exists($key, $array))return false;
    }
    return true;
}

(344ms vs 768ms 1000000 次迭代)

于 2016-03-01T22:53:58.197 回答
3

如果你有这样的事情:

$stuff = array();
$stuff[0] = array('story' => 'A story', 'message' => 'in a bottle');
$stuff[1] = array('story' => 'Foo');

你可以简单地count()

foreach ($stuff as $value) {
  if (count($value) == 2) {
    // story and message
  } else {
    // only story
  }
}

这只有在你确定你只有这些数组键时才有效,没有别的。

使用 array_key_exists() 仅支持一次检查一个键,因此您需要分别检查两者:

foreach ($stuff as $value) {
  if (array_key_exists('story', $value) && array_key_exists('message', $value) {
    // story and message
  } else {
    // either one or both keys missing
  }
}

array_key_exists()如果键存在于数组中,则返回 true,但它是一个真正的函数并且需要输入很多内容。语言构造isset()几乎会做同样的事情,除非测试值为 NULL:

foreach ($stuff as $value) {
  if (isset($value['story']) && isset($value['message']) {
    // story and message
  } else {
    // either one or both keys missing
  }
}

此外,isset 允许一次检查多个变量:

foreach ($stuff as $value) {
  if (isset($value['story'], $value['message']) {
    // story and message
  } else {
    // either one or both keys missing
  }
}

现在,为了优化设置的东西的测试,你最好使用这个“if”:

foreach ($stuff as $value) {
  if (isset($value['story']) {
    if (isset($value['message']) {
      // story and message
    } else {
      // only story
    }
  } else {
    // No story - but message not checked
  }
}
于 2012-11-01T01:10:58.430 回答
3

那这个呢:

isset($arr['key1'], $arr['key2']) 

仅当两者都不为 null 时才返回 true

如果为空,则键不在数组中

于 2015-01-28T13:25:32.717 回答
3

我经常使用这样的东西

$wantedKeys = ['story', 'message'];
$hasWantedKeys = count(array_intersect(array_keys($source), $wantedKeys)) > 0

或查找所需键的值

$wantedValues = array_intersect_key($source, array_fill_keys($wantedKeys, 1))
于 2019-01-29T19:23:03.460 回答
2

试试这个

$required=['a','b'];$data=['a'=>1,'b'=>2];
if(count(array_intersect($required,array_keys($data))>0){
    //a key or all keys in required exist in data
 }else{
    //no keys found
  }
于 2015-11-20T05:30:32.810 回答
1

这是我为自己编写的用于在类中使用的函数。

<?php
/**
 * Check the keys of an array against a list of values. Returns true if all values in the list
 is not in the array as a key. Returns false otherwise.
 *
 * @param $array Associative array with keys and values
 * @param $mustHaveKeys Array whose values contain the keys that MUST exist in $array
 * @param &$missingKeys Array. Pass by reference. An array of the missing keys in $array as string values.
 * @return Boolean. Return true only if all the values in $mustHaveKeys appear in $array as keys.
 */
    function checkIfKeysExist($array, $mustHaveKeys, &$missingKeys = array()) {
        // extract the keys of $array as an array
        $keys = array_keys($array);
        // ensure the keys we look for are unique
        $mustHaveKeys = array_unique($mustHaveKeys);
        // $missingKeys = $mustHaveKeys - $keys
        // we expect $missingKeys to be empty if all goes well
        $missingKeys = array_diff($mustHaveKeys, $keys);
        return empty($missingKeys);
    }


$arrayHasStoryAsKey = array('story' => 'some value', 'some other key' => 'some other value');
$arrayHasMessageAsKey = array('message' => 'some value', 'some other key' => 'some other value');
$arrayHasStoryMessageAsKey = array('story' => 'some value', 'message' => 'some value','some other key' => 'some other value');
$arrayHasNone = array('xxx' => 'some value', 'some other key' => 'some other value');

$keys = array('story', 'message');
if (checkIfKeysExist($arrayHasStoryAsKey, $keys)) { // return false
    echo "arrayHasStoryAsKey has all the keys<br />";
} else {
    echo "arrayHasStoryAsKey does NOT have all the keys<br />";
}

if (checkIfKeysExist($arrayHasMessageAsKey, $keys)) { // return false
    echo "arrayHasMessageAsKey has all the keys<br />";
} else {
    echo "arrayHasMessageAsKey does NOT have all the keys<br />";
}

if (checkIfKeysExist($arrayHasStoryMessageAsKey, $keys)) { // return false
    echo "arrayHasStoryMessageAsKey has all the keys<br />";
} else {
    echo "arrayHasStoryMessageAsKey does NOT have all the keys<br />";
}

if (checkIfKeysExist($arrayHasNone, $keys)) { // return false
    echo "arrayHasNone has all the keys<br />";
} else {
    echo "arrayHasNone does NOT have all the keys<br />";
}

我假设您需要检查数组中的多个键 ALL EXIST。如果您正在寻找至少一个键的匹配项,请告诉我,以便我提供另一个功能。

键盘在这里http://codepad.viper-7.com/AKVPCH

于 2013-07-08T15:20:11.460 回答
1

希望这可以帮助:

function array_keys_exist($searchForKeys = array(), $inArray = array()) {
    $inArrayKeys = array_keys($inArray);
    return count(array_intersect($searchForKeys, $inArrayKeys)) == count($searchForKeys); 
}
于 2017-11-18T14:13:09.620 回答
1

这是旧的,可​​能会被埋葬,但这是我的尝试。

我有一个类似于@Ryan 的问题。在某些情况下,我只需要检查数组中是否至少有一个键,在某些情况下,所有键都需要存在。

所以我写了这个函数:

/**
 * A key check of an array of keys
 * @param array $keys_to_check An array of keys to check
 * @param array $array_to_check The array to check against
 * @param bool $strict Checks that all $keys_to_check are in $array_to_check | Default: false
 * @return bool
 */
function array_keys_exist(array $keys_to_check, array $array_to_check, $strict = false) {
    // Results to pass back //
    $results = false;

    // If all keys are expected //
    if ($strict) {
        // Strict check //

        // Keys to check count //
        $ktc = count($keys_to_check);
        // Array to check count //
        $atc = count(array_intersect($keys_to_check, array_keys($array_to_check)));

        // Compare all //
        if ($ktc === $atc) {
            $results = true;
        }
    } else {
        // Loose check - to see if some keys exist //

        // Loop through all keys to check //
        foreach ($keys_to_check as $ktc) {
            // Check if key exists in array to check //
            if (array_key_exists($ktc, $array_to_check)) {
                $results = true;
                // We found at least one, break loop //
                break;
            }
        }
    }

    return $results;
}

这比编写多个||&&块要容易得多。

于 2018-03-23T23:28:29.247 回答
1
    $colsRequired   = ["apple", "orange", "banana", "grapes"];
    $data           = ["apple"=>"some text", "orange"=>"some text"];
    $presentInBoth  = array_intersect($colsRequired,array_keys($data));

    if( count($presentInBoth) != count($colsRequired))
        echo "Missing keys  :" . join(",",array_diff($colsRequired,$presentInBoth));
    else
        echo "All Required cols are present";
于 2020-12-18T03:11:56.600 回答
0

这不起作用吗?

array_key_exists('story', $myarray) && array_key_exists('message', $myarray)
于 2012-11-01T01:03:26.287 回答
0
<?php

function check_keys_exists($keys_str = "", $arr = array()){
    $return = false;
    if($keys_str != "" and !empty($arr)){
        $keys = explode(',', $keys_str);
        if(!empty($keys)){
            foreach($keys as $key){
                $return = array_key_exists($key, $arr);
                if($return == false){
                    break;
                }
            }
        }
    }
    return $return;
}

//运行演示

$key = 'a,b,c';
$array = array('a'=>'aaaa','b'=>'ccc','c'=>'eeeee');

var_dump( check_keys_exists($key, $array));
于 2014-09-12T12:14:27.673 回答
0

我不确定,如果这是个坏主意,但我使用非常简单的 foreach 循环来检查多个数组键。

// get post attachment source url
$image     = wp_get_attachment_image_src(get_post_thumbnail_id($post_id), 'single-post-thumbnail');
// read exif data
$tech_info = exif_read_data($image[0]);

// set require keys
$keys = array('Make', 'Model');

// run loop to add post metas foreach key
foreach ($keys as $key => $value)
{
    if (array_key_exists($value, $tech_info))
    {
        // add/update post meta
        update_post_meta($post_id, MPC_PREFIX . $value, $tech_info[$value]);
    }
} 
于 2014-11-24T16:08:28.057 回答
0
// sample data
$requiredKeys = ['key1', 'key2', 'key3'];
$arrayToValidate = ['key1' => 1, 'key2' => 2, 'key3' => 3];

function keysExist(array $requiredKeys, array $arrayToValidate) {
    if ($requiredKeys === array_keys($arrayToValidate)) {
        return true;
    }

    return false;
}
于 2016-06-17T11:38:11.840 回答
0
$myArray = array('key1' => '', 'key2' => '');
$keys = array('key1', 'key2', 'key3');
$keyExists = count(array_intersect($keys, array_keys($myArray)));

将返回 true,因为在 $myArray 中有来自 $keys 数组的键

于 2016-10-05T15:02:58.087 回答
0

可以使用的东西

//Say given this array
$array_in_use2 = ['hay' => 'come', 'message' => 'no', 'story' => 'yes'];
//This gives either true or false if story and message is there
count(array_intersect(['story', 'message'], array_keys($array_in_use2))) === 2;

请注意对 2 的检查,如果您要搜索的值不同,您可以更改。

此解决方案可能效率不高,但有效!

更新

在一个脂肪函数中:

 /**
 * Like php array_key_exists, this instead search if (one or more) keys exists in the array
 * @param array $needles - keys to look for in the array
 * @param array $haystack - the <b>Associative</b> array to search
 * @param bool $all - [Optional] if false then checks if some keys are found
 * @return bool true if the needles are found else false. <br>
 * Note: if hastack is multidimentional only the first layer is checked<br>,
 * the needles should <b>not be<b> an associative array else it returns false<br>
 * The array to search must be associative array too else false may be returned
 */
function array_keys_exists($needles, $haystack, $all = true)
{
    $size = count($needles);
    if($all) return count(array_intersect($needles, array_keys($haystack))) === $size;
    return !empty(array_intersect($needles, array_keys($haystack)));

}

因此,例如:

$array_in_use2 = ['hay' => 'come', 'message' => 'no', 'story' => 'yes'];
//One of them exists --> true
$one_or_more_exists = array_keys_exists(['story', 'message'], $array_in_use2, false);
//all of them exists --> true
$all_exists = array_keys_exists(['story', 'message'], $array_in_use2);

希望这可以帮助 :)

于 2017-01-11T08:10:25.510 回答
0

我通常使用一个函数来验证我的帖子,它也是这个问题的答案,所以让我发布它。

要调用我的函数,我将像这样使用 2 数组

validatePost(['username', 'password', 'any other field'], $_POST))

那么我的功能将如下所示

 function validatePost($requiredFields, $post)
    {
        $validation = [];

        foreach($requiredFields as $required => $key)
        {
            if(!array_key_exists($key, $post))
            {
                $validation['required'][] = $key;
            }
        }

        return $validation;
    }

这将输出这个

“必填”:[“用户名”、“密码”、“任何其他字段”]

所以这个函数所做的是验证并返回发布请求的所有缺失字段。

于 2020-06-06T22:44:32.133 回答