php - 如何将二维数组转换为一维数组?

标签 php codeigniter

我想将二维数组转换为一维数组。 当我执行 var_dump($image_name_db); 它显示:

array(2) {
  [0]=>
  array(1) {
    ["image"]=>
    string(7) "pic.PNG"
  }
  [1]=>
  array(1) {
    ["image"]=>
    string(14) "abouttown3.jpg"
  }
}

现在如何将它转换为一维数组。因为我想比较两个数组。一个数组是一维的,另一个数组是二维的,这就是为什么我想要一维的二维数组。所以我需要它们都是一维的,以便轻松比较。 我正在使用 codeigniter。

最佳答案

使用 array_column() 函数,如果 php 版本是 5.5+

array_column($image_name_db, 'image');

参见:http://php.net/manual/en/function.array-column.php

对于以下不受支持的版本,请使用 https://github.com/ramsey/array_column

if (!function_exists('array_column')) {
    /**
     * Returns the values from a single column of the input array, identified by
     * the $columnKey.
     *
     * Optionally, you may provide an $indexKey to index the values in the returned
     * array by the values from the $indexKey column in the input array.
     *
     * @param array $input A multi-dimensional array (record set) from which to pull
     *                     a column of values.
     * @param mixed $columnKey The column of values to return. This value may be the
     *                         integer key of the column you wish to retrieve, or it
     *                         may be the string key name for an associative array.
     * @param mixed $indexKey (Optional.) The column to use as the index/keys for
     *                        the returned array. This value may be the integer key
     *                        of the column, or it may be the string key name.
     * @return array
     */
    function array_column($input = null, $columnKey = null, $indexKey = null)
    {
        // Using func_get_args() in order to check for proper number of
        // parameters and trigger errors exactly as the built-in array_column()
        // does in PHP 5.5.
        $argc = func_num_args();
        $params = func_get_args();
        if ($argc < 2) {
            trigger_error("array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING);
            return null;
        }
        if (!is_array($params[0])) {
            trigger_error(
                'array_column() expects parameter 1 to be array, ' . gettype($params[0]) . ' given',
                E_USER_WARNING
            );
            return null;
        }
        if (!is_int($params[1])
            && !is_float($params[1])
            && !is_string($params[1])
            && $params[1] !== null
            && !(is_object($params[1]) && method_exists($params[1], '__toString'))
        ) {
            trigger_error('array_column(): The column key should be either a string or an integer', E_USER_WARNING);
            return false;
        }
        if (isset($params[2])
            && !is_int($params[2])
            && !is_float($params[2])
            && !is_string($params[2])
            && !(is_object($params[2]) && method_exists($params[2], '__toString'))
        ) {
            trigger_error('array_column(): The index key should be either a string or an integer', E_USER_WARNING);
            return false;
        }
        $paramsInput = $params[0];
        $paramsColumnKey = ($params[1] !== null) ? (string) $params[1] : null;
        $paramsIndexKey = null;
        if (isset($params[2])) {
            if (is_float($params[2]) || is_int($params[2])) {
                $paramsIndexKey = (int) $params[2];
            } else {
                $paramsIndexKey = (string) $params[2];
            }
        }
        $resultArray = array();
        foreach ($paramsInput as $row) {
            $key = $value = null;
            $keySet = $valueSet = false;
            if ($paramsIndexKey !== null && array_key_exists($paramsIndexKey, $row)) {
                $keySet = true;
                $key = (string) $row[$paramsIndexKey];
            }
            if ($paramsColumnKey === null) {
                $valueSet = true;
                $value = $row;
            } elseif (is_array($row) && array_key_exists($paramsColumnKey, $row)) {
                $valueSet = true;
                $value = $row[$paramsColumnKey];
            }
            if ($valueSet) {
                if ($keySet) {
                    $resultArray[$key] = $value;
                } else {
                    $resultArray[] = $value;
                }
            }
        }
        return $resultArray;
    }
}

或者使用array_map

$image_name_arr = array_map(function($arr){
   return $arr['image'];
},$image_name_db);

关于php - 如何将二维数组转换为一维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30070078/

相关文章:

codeigniter - 手动设置 session 过期时间-CodeIgniter

php - MySQL ORDER BY 最近的区域

php - shop_item_id 必须有效

php - MySQL:查询搜索所有可能的单词

php - Wordpress 帖子不会彼此相邻显示

mysql - Codeigniter 获取所有字段信息

php - 为什么多次上传没有插入数据库

php - 字符串之间的逻辑运算

Codeigniter URL 在没有 index.php 的情况下不起作用

apache - Codeigniter 网站上的链接在新服务器上损坏