arrhelper::map
Posted Yeah,程序猿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arrhelper::map相关的知识,希望对你有一定的参考价值。
$array = [
[‘id‘ => ‘123‘, ‘name‘ => ‘aaa‘, ‘class‘ => ‘x‘],
[‘id‘ => ‘124‘, ‘name‘ => ‘bbb‘, ‘class‘ => ‘x‘],
[‘id‘ => ‘345‘, ‘name‘ => ‘ccc‘, ‘class‘ => ‘y‘],
];
$result = ArrayHelper::map($array, ‘id‘, ‘name‘);
// the result is:
// [
// ‘123‘ => ‘aaa‘,
// ‘124‘ => ‘bbb‘,
// ‘345‘ => ‘ccc‘,
// ]
$result = ArrayHelper::map($array, ‘id‘, ‘name‘, ‘class‘);
// the result is:
// [
// ‘x‘ => [
// ‘123‘ => ‘aaa‘,
// ‘124‘ => ‘bbb‘,
// ],
// ‘y‘ => [
// ‘345‘ => ‘ccc‘,
// ],
// ]
以上是关于arrhelper::map的主要内容,如果未能解决你的问题,请参考以下文章