php5.5新函数array_column

时间:2021-11-17 10:05:22

php5.5新增了一个新的数组函数,感觉挺使用的,低版本的实现按照如下实现

 if(!function_exists('array_column')){
function array_column($input, $columnKey, $indexKey=null){
$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, );
$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, );
$key = (is_array($key) && !empty($key)) ? current($key) : null;
$key = is_null($key) ? : $key;
}else{
$key = isset($row[$indexKey]) ? $row[$indexKey] : ;
}
}
$result[$key] = $tmp;
}
return $result;
}
}