如果键名不存在,array_column会返回什么?

时间:2013-03-11 20:50:00

标签: php associative-array

根据https://wiki.php.net/rfc/array_column,array_column将很快添加到PHP中。但我无法理解RFC。如果命名密钥不存在,将返回什么?

示例:

$arr = array(
    array(
        'firstname' => 'Bob',
        'lastname'  => 'Tomato'
    ),
    array(
        'firstname' => 'Larry',
        'lastname'  => 'Cucumber'
    )
);

$middlenames = array_column($arr, 'middlename');

2 个答案:

答案 0 :(得分:8)

简介

让您了解RFC首先需要了解问题及其引入的原因。

您的数组

$arr = array(
        array(
                'firstname' => 'Bob',    <--
                'lastname' => 'Tomato'     |    <--
        ),                                 |      |
        array(                             |      |
                'firstname' => 'Larry',  <--      |
                'lastname' => 'Cucumber'        <-|
        )
);

获取专栏

要获得Bob & LarryTomato and Cucumber,您使用了多行代码示例:

$colums = array();
foreach ( array_map(null, $arr[0], $arr[1]) as $value ) {
    $colums[] = $value;
}
print_r($colums);

Output

Array
(
    [0] => Array
        (
            [0] => Bob
            [1] => Larry
        )

    [1] => Array
        (
            [0] => Tomato
            [1] => Cucumber
        )

)

动态版

上述代码只有在你知道其他创意方式的元素数量

时才有效
$colums = array();
array_unshift($arr, null);
foreach (call_user_func_array("array_map", $arr) as $value ) {
    $colums[] = $value;
}

Live Test

或更好的Sill使用MultipleIterator

$mi = new MultipleIterator(MultipleIterator::MIT_NEED_ALL);
foreach ( $arr as $v ) {
    $mi->attachIterator(new ArrayIterator($v));
}

$colums = array();
foreach ( $mi as $v ) {
    $colums[] = $v;
}
print_r($colums);

Live Test

键名

如果你需要在这里获取密钥名称是另一种方法

$colums = array_reduce($arr, function ($a, $b) {
    foreach ( $b as $k => $v ) {
        $a[$k][] = $v;
    }
    return $a;
});

Live Test

返回array_column

array_column只想简单地处理该过程,并使用名字获取所有列将如下所示:

 print_r(array_column($arr,"lastname"));
                               ^
                               |
                               +--- This get value with key "lastname"

Live Test

更复杂的Senerio

想象一下,您希望您的阵列具有此输出

Array
(
    [Bob] => Tomato
    [Larry] => Cucumber
)

使用您可以拥有的旧方法

$colums = array();
array_unshift($arr, null);
foreach (call_user_func_array("array_map", $arr) as $value ) {
    $key = array_shift($value);
    $colums[$key] = current($value);
}
print_r($colums);

Live Test

现在您可以看到我必须使用array_shiftcurrent来获得前2个元素..随着数组的增长,这会变得复杂但array_column会简化此

print_r(array_column($arr,"lastname","firstname"));
                              ^           ^
                              |           |
                             Value       Key    (I wonder why position is backwards)

Output

Array
(
    [Bob] => Tomato
    [Larry] => Cucumber
)

最后回到您的问题

What will be returned if a named key doesn't exist?

空数组......来自您的示例

 print_r(array_column($arr,"middlename"));
                                ^
                                |
                        it would try to check if any of your array has key middle man

It returns

Array        <------- Otherwise returns empty array 
(
)

结论

我使用looparray_maparray_reduceMultipleIterator来解释array_column试图实现的目标。

正如您所看到的那样array_column更加简化,但i would advice you play with the examples in the RFC更加简化,如果您仍然不理解它,这将使您更好地理解它,PHP是一种灵活的语言你总是可以实现自己的版本

答案 1 :(得分:6)

根据:https://wiki.php.net/rfc/array_column

  

当找不到相应的indexKey时,该值将用一个整数键入,从零开始。

RFC中使用的示例:

$mismatchedColumns = array(
   array(
       'a' => 'foo',
       'b' => 'bar',
       'e' => 'baz'
   ),
   array(
       'a' => 'qux',
       'c' => 'quux',
       'd' => 'corge'
   ),
   array(
       'a' => 'grault',
       'b' => 'garply',
       'e' => 'waldo'
   ),
);

$foo = array_column($mismatchedColumns, 'a', 'b');

$foo中的结果等于:

Array
(
   [bar] => foo
   [0] => qux
   [garply] => grault
)

基本上, a 的值成为新的数组值, b 成为键。当原始数组不包含键 b 时,它会创建一个0索引并使用它。如果有多个密钥不存在,则它们将从0开始递增。

进一步研究他们的例子,它暗示当你无法匹配原始数组中的值时,你根本就得不到数组元素。这意味着如果您在数组中查找单个值并且它不存在,它将返回一个空数组。


P.S。我显然从来没有使用这个函数,因此大部分都是对RFC的解释。


另一方面,该功能被接受包含在PHP中,最初由Ben Ramsey提出,最终结果是38票赞成,6票反对。可以在此处查看邮件列表讨论:http://grokbase.com/t/php/php-internals/126nxxa80p/draft-rfc-array-column-function。另请参阅https://github.com/php/php-src/pull/257