duanjiao7440 2017-08-28 02:28
浏览 199
已采纳

如何在PHP中获取数组值的子集?

Given:

$info = ['abc'=>'xyz', '123'=>'456', 'vowels'=>'aeiou'];  //complete data array
$keys = ['abc','123'];  //list of keys I'm interested in getting the VALUES for

What's the best way to get an array like this (no KEYS in it):

['xyz','456']

Currently, I have this, but feel there might be some other way with PHP's built-in array functions:

$result = [];

foreach ($keys as $key) {
    $result[] = $info[$key];
}

return $result;

Other answers describe a 'pluck' type function, but those all return keys too... I only want the values.

Update: The answer seems to be a combination of two responses below:

array_values(array_intersect_key($info,array_flip($keys)));
  • 写回答

1条回答 默认 最新

  • dopii22884 2017-08-28 02:58
    关注

    Nothing particularly bad about your approach, but here are a couple of alternatives

    $info = ['abc'=>'xyz', '123'=>'456', 'vowels'=>'aeiou'];  //complete data array
    $keys = ['abc','123'];  //list of keys I'm interested in
    
    $out=array_intersect_key($info,array_flip($keys));
    
    print_r($out);
    

    Array ( [abc] => xyz [123] => 456 )

    OR

    $out= array_map(function($x) use ($info) { return $info[$x]; }, $keys);
    
    print_r($out);
    

    Array ( [0] => xyz [1] => 456 )

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换