Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How is is possible, using PHP to add a new index to each 'level' of an multidimensional array?

For instance, for the following array:

$array = array(
    'a' => 'a val',
    'b' => array(
        'ba' => 'ba value',
        'bb' => array(
            'bba' => 'bba value'
        ),
        'bc' => 'bc value'
    ),
    'c' => 'c val',
    'd' => 'd val'
);

... would turn into:

$array = array(
    'a' => 'a val',
    'b' => array(
        'ba' => 'ba value',
        'bb' => array(
            'bba' => 'bba value',
            'new index' => 'new index value'
        ),
        'bc' => 'bc value',
        'new index' => 'new index value'
    ),
    'c' => 'c val',
    'd' => 'd val',
    'new index' => 'new index value'
);

Thanks in advance,
titel

share|improve this question
1  
What would it do if there are multiple sub-arrays on a single level? – intgr Nov 24 '09 at 22:45
@intgr - well.. add the new index only to the first level – titel Nov 24 '09 at 23:05

2 Answers

up vote 1 down vote accepted

The corrected function from the phpdeveloper

function addIndex($arr){
  if(!is_array($arr)){ return; }
  foreach($arr as &$a){
    if(is_array($a)){
      $a = addIndex($a);
    }
  }
  $arr['new index'] = 'new index value';
  return $arr;
}
share|improve this answer
function addIndex($arr){
  if(!is_array($arr)){ return; }
  foreach($arr as &$a){
    if(is_array($a)){
      $a = addIndex($a);
    }
  }
  $arr['new index'] = 'new index value';
  return $arr;
}
share|improve this answer
3  
you need a pass by reference, or else to assign the result of addIndex back to $arr i think? – benlumley Nov 24 '09 at 22:48
the function you proposed is only adding the new index to the first level of the array, not the other as well :( – titel Nov 24 '09 at 23:02
i forgot a & pass by reference – mauris Nov 24 '09 at 23:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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