Marcus
Marcus

Reputation:

Extract elements from array so it only consists values of a specified index

I have an array

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

is there a one line way to convert the above to the following in PHP?

array(10,20,30);

Upvotes: 0

Views: 1872

Answers (5)

Tom Haigh
Tom Haigh

Reputation: 57815

Nasty solution:

$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 );

Upvotes: 0

grantwparks
grantwparks

Reputation: 1153

I have two really cool methods that work together for your purpose (and variations of it).

/**
 * 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;
    }
}

Upvotes: 0

Vinko Vrsalovic
Vinko Vrsalovic

Reputation: 340221

There always is in a semicolon terminated sentences language:

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

Now I wouldn't write this.

This I might write, but you have to create a function first, which sums up to more than one line (or not, but I refuse to write this in a single line :-) )

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

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

Upvotes: 1

PatrikAkerstrand
PatrikAkerstrand

Reputation: 45721

You could use array_map, but it takes a little more than one line, unless you have 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);

With 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);

Either way, I suggest you make a method of this since it increases readability and reusability.

Upvotes: 3

Blixt
Blixt

Reputation: 50169

Define one-line. As Vinko showed, there can be a great number of statements on one line. Here's the best one-line solution I can think of at the moment (the one-liner being the foreach statement):

$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'];

Obviously there is more than one line, but I'm assuming you already have the $arr1 and $arr2 arrays initialized.

Upvotes: 0

Related Questions