通过“helper”函数创建 key => value 数组

我有一个具有以下值的二维数组:


  [

    'id' => 12,

    'title' => 'the title', //and a few other key => value


    ],

        [

    'id' => 13,

    'title' => 'the title 13', // and a few other key => value

    ],...

最后,我需要一个只有id 和 title的多维数组


[ $item['id'] => $item['title'], ...]


通常,我会做一个简单的 foreach 来实现这一点,但我现在想使用 php 函数。我已经这样做了,但是有正确的方法吗?


$list = array_combine(array_column($list_forms, 'id'), array_column($list_forms, 'title'));


暮色呼如
浏览 68回答 1
1回答

慕仙森

第三个参数是:array_column$list = array_column($list_forms, 'title', 'id');
打开App,查看更多内容
随时随地看视频慕课网APP