vote up 0 vote down star

How do I get this array:

Array
(
    [0] => Array
        (
            [max] => 5
            [year] => 2007
        )

    [1] => Array
        (
            [max] => 6.05
            [year] => 2008
        )

    [2] => Array
        (
            [max] => 7
            [year] => 2009
        )

)

Into this format:

[year] => [max]

(ashamed at my ignorance...one of those days)

flag

3 Answers

vote up 5 vote down check
$result = array();
foreach($array as $v) {
    $result[$v['year']] = $v['max'];
}

There you go.

link|flag
vote up 1 vote down

Simple way?

$dest = array();
foreach ($src as $k => $v) {
  $dest[$v['year']] = $v['max'];
}
link|flag
1  
wont work. $k is the Keys that are 0,1,2. – José Leal May 15 at 0:28
You're right. Fixed. – cletus May 15 at 0:32
vote up 1 vote down

you would need to iterate through your current array and put the data into a new array.

$result = array();
foreach($currenArray as $x) 
{
    $result[$x['year']] = $x['max'];
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.