从数组中提取元素,使其仅包含指定索引的值

时间:2009-06-08 15:48:03

标签: php arrays

我有一个数组

array(
 array('total'=>10,'v'=>3229),
 array('total'=>20,'v'=>3129),
 array('total'=>30,'v'=>3391),
);

是否有一行方式将上述内容转换为PHP中的以下内容?

array(10,20,30);

5 个答案:

答案 0 :(得分:3)

你可以使用array_map,但它需要多一行,除非你有PHP 5.3 +:

$original = array(
               array('total'=>10,'v'=>3229),
               array('total'=>20,'v'=>3129),
               array('total'=>30,'v'=>3391),
             );


// Callback function
function valueOnly ($element) {
   return $element['total'];
} 

$result = array_map('valueOnly', $original);

使用PHP 5.3 +:

$index = 'total';
$lambda = function ($value) use ($index) { return $value[$index]; };

// Here is the one-liner that can be reused if you save the $lamda-function.
$result = array_map($lambda, $original);

无论哪种方式,我建议你制定一个方法,因为它提高了可读性和可重用性。

答案 1 :(得分:1)

总是以分号终止句子语言:

foreach ($a as $v){ foreach($v as $k=>$v2) { if($k == 'total') {$r[] = $v2;}}};

现在我不会写这个。

我可能会这样写,但你必须首先创建一个函数,它总计不止一行(或者不是,但我拒绝在一行中写这个:-))

function get_value($x) {
    return $x['total'];
}

$r = array_map("get_value",$a);

答案 2 :(得分:0)

定义一行。如Vinko所示,一行上可以有大量的陈述。这是我现在能想到的最佳单线解决方案(单线是foreach声明):

$arr1 = array(
   array('total'=>10,'v'=>3229),
   array('total'=>20,'v'=>3129),
   array('total'=>30,'v'=>3391),
);

$arr2 = array();
foreach ($arr1 as $item) $arr2[] = $item['total'];

显然有多行,但我假设你已经初始化了$ arr1和$ arr2数组。

答案 3 :(得分:0)

我有两个非常酷的方法,可以为你的目的(及其变体)一起工作。

/**
 * Pivots a 2 dimensional array.
 *
 * Turns the column names in a two dimensional array into the rows,
 * using the original array's row indexes as column names.  The input
 * array and its rows may be integer-indexed or a hash.
 *
 * You can optionally specify a column or list of columns to return as rows
 *
 * Example -
 * <pre>
 *
 * input:
 * $aIn => array([0] => array([name] => 'John Doe', [phone] => '555-1000', 'happy'),
 *               [1] => array([name] => 'Fred Doodle', [phone] => '555-2000', 'sad', [title] => 'President'),...
 *
 * output:
 * array([name]  => array([0] => 'John Doe', [1] => 'Fred Doodle',...),
 *       [phone] => array([0] => '555-1000', [1] => '555-2000',...),
 *       [0]     => array([0] => 'happy',    [1] => 'sad',...),
 *       [title] => array([1] => 'President'))
 *
 * </pre>
 * @param  array $aInput    A two dimensional array
 * @param  mixed $mColumns  An array of columns or single column name. If nothing
 *                          passed, then all columns from each input row will become rows
 *                          in the output array.
 * @return array            Pivoted array !!! If a single column name is passed in $mColumns
 *                          The return will be a one-dimensional array; you will get back
 *                          an array of the values for that column.
 */
static function pivot($aIn, $mColumns = null) {

    // Initialize the output
    $aOut = array();
    /*
     * If input list of column names, then initialize, in case the
     * input array is empty or doesn't have those columns
     */
    if (is_array($mColumns) && !empty($mColumns)) {
        foreach ($mColumns as $col) {
            $aOut[$col] = array();
        }
    }
    /*
     * Output array needs to be passed inside an array to be passed by reference.
     */
    // TODO As of PHP 5.2.3, could replace callback arg below with simply "xarray::pivot_row", but production uses 5.1.6
    array_walk($aIn, array("xarray", "pivot_row"), array(&$aOut));
    return (empty($aOut) || is_null($mColumns) ? $aOut : (is_array($mColumns) ? array_intersect_key($aOut, array_flip($mColumns)) : $aOut[$mColumns]));
}

public static function pivot_row($aRow, $mKey, $aSpec) {
    foreach ($aRow as $k => $v) {
        $aSpec[0][$k][$mKey] = $v;
    }
}

答案 4 :(得分:0)

令人讨厌的解决方案:

$source = array(
 array('total'=>10,'v'=>3229),
 array('total'=>20,'v'=>3129),
 array('total'=>30,'v'=>3391),
);

$totals = array_map( create_function('$a', 'return $a[\'total\'];'), $source );