听说只有大牛级的高工才知道的函数array_column ()
讲真,我才知道。
(PHP 5 >= 5.5.0, PHP 7)
array_column — 返回数组中指定的一列
说明
array_column() 返回input
数组中键值为column_key
的列, 如果指定了可选参数index_key
,那么input
数组中的这一列的值将作为返回数组中对应值的键。
参数
input
需要取出数组列的多维数组(或结果集)
column_key
- 需要返回值的列,它可以是索引数组的列索引,或者是关联数组的列的键。 也可以是
NULL
,此时将返回整个数组(配合index_key
参数来重置数组键的时候,非常管用) index_key
作为返回数组的索引/键的列,它可以是该列的整数索引,或者字符串键值。
返回值
从多维数组中返回单列数组
根据说明,我们可以写出两个demo
1.首先,我们定义二维数组
$arr = array( array( 'id' => 1, 'name' => 'A', 'age' => 11, ), array( 'id' => 2, 'name' => 'B', 'age' => 12, ), array( 'id' => 3, 'name' => 'C', 'age' => 13, ), array( 'id' => 4, 'name' => 'D', 'age' => 14, ) );
2.demo1
print_r(array_column($arr,"name")); //Array ( [0] => A [1] => B [2] => C [3] => D )
3.demo2
print_r(array_column($arr,"age","name")); //Array ( [A] => 11 [B] => 12 [C] => 13 [D] => 14 )
封装
这个函数是php5.5才支持,小于5.5的,可以封装一个
/** * 返回数组中指定的一列 * @param $input 需要取出数组列的多维数组(或结果集) * @param $columnKey 需要返回值的列,它可以是索引数组的列索引,或者是关联数组的列的键。 也可以是NULL,此时将返回整个数组(配合index_key参数来重置数组键的时候,非常管用) * @param null $indexKey 作为返回数组的索引/键的列,它可以是该列的整数索引,或者字符串键值。 * @return array 返回值 */ function _array_column($input, $columnKey, $indexKey = null) { if (!function_exists('array_column')) { $columnKeyIsNumber = (is_numeric($columnKey)) ? true : false; $indexKeyIsNull = (is_null($indexKey)) ? true : false; $indexKeyIsNumber = (is_numeric($indexKey)) ? true : false; $result = array(); foreach ((array)$input as $key => $row) { if ($columnKeyIsNumber) { $tmp = array_slice($row, $columnKey, 1); $tmp = (is_array($tmp) && !empty($tmp)) ? current($tmp) : null; } else { $tmp = isset($row[$columnKey]) ? $row[$columnKey] : null; } if (!$indexKeyIsNull) { if ($indexKeyIsNumber) { $key = array_slice($row, $indexKey, 1); $key = (is_array($key) && !empty($key)) ? current($key) : null; $key = is_null($key) ? 0 : $key; } else { $key = isset($row[$indexKey]) ? $row[$indexKey] : 0; } } $result[$key] = $tmp; } return $result; } else { return array_column($input, $columnKey, $indexKey); } }