php 5.5使用 array_column的方法

Posted newmiracle宇宙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 5.5使用 array_column的方法相关的知识,希望对你有一定的参考价值。

<pre>
php 5.5使用 array_column的方法
</pre>

<pre>
public 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, 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;
}
</pre>

以上是关于php 5.5使用 array_column的方法的主要内容,如果未能解决你的问题,请参考以下文章

PHP使用array_combine和array_column

PHP array_column() 函数

php [php:array_search + array_column]来自db的saerch数组返回array_search + array_column。 #PHP

php数组函数array_column:不用循环就能提取多维数组内容

php 二维数组按某个字段排序

php返回数组中指定的一列方法是啥?