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.

I'm trying to create an array that matches the structure of any given XML string (an example is listed, below), using the first example function from the SimpleXMLIterator manual page on php.net, but I'm getting unsatisfactory results, in that, instead of getting back an array with the same structure, there are "unwanted" array elements with an index of [0] situated between each level. Here are some relevant examples. First, the XML:

<template>
  <random>
    <li>
      <text>Random Value 1</text>
    </li>
    <li>
      <text>Random Value 2</text>
    </li>
    <li>
      <text>Random Value 3</text>
    </li>
  </random>
</template>

This is the desired array structure that I'd like to see when I use var_dump():

array(1) {
  ["random"]=>
  array(1) {
    ["li"]=>
    array(3) {
      [0]=>
      array(1) {
        ["text"]=>
        string(14) "Random Value 1"
      }
      [1]=>
      array(1) {
        ["text"]=>
        string(14) "Random Value 2"
      }
      [2]=>
      array(1) {
        ["text"]=>
        string(14) "Random Value 3"
      }
    }
  }
}

Instead, I'm getting this:

array(1) {
["random"]=>
  array(1) {
    [0]=>
    array(1) {
      ["li"]=>
      array(4) {
        [0]=>
        array(1) {
          ["text"]=>
          array(1) {
            [0]=>
            string(14) "Random Value 1"
          }
        }
        [1]=>
        array(1) {
          ["text"]=>
          array(1) {
            [0]=>
            string(14) "Random Value 2"
          }
        }
        [2]=>
        array(1) {
          ["text"]=>
          array(1) {
            [0]=>
            string(14) "Random Value 3"
          }
        }
      }
    }
  }
}

As you can see, there are extra elements at every level, between 'parent' and 'child' named elements, so that, in order to access, say, the 'text' element within the second 'li' element in 'random', I have to use:

$li = template['random'][0]['li'][1]['text'][0];

when what I wish to do is use:

$li = template['random']['li'][1]['text'];

I've tried a few different methods for getting past this, but so far, I'm having no luck. Here's one example of one method I've tried:

function reduceArray($key, $array){
  if (!is_array($array)) return $array;
  //print "processing array key $key\n"; # debugging - trace the process
  if (count($array) == 1 and $key == 0) { // Make sure that the array is "an only child"
    //print "moving the array 'up' one position\n"; # more debugging - still tracing
    $temp = $array[0]; // Save the child element
    $array = array();  // Reset the array
    if (is_array($temp)) {
      foreach ($temp as $key1 => $value) {
        $array[$key1] = reduceArray($key1, $value);
      }
    }
    else $array = $temp;
  }
  return $array;
}

Sadly, this does not seem to work completely, and I'm not sure why, unless my logic is flawed. It seems to remove the first "empty" element below 'random', and it removes the first "empty" element below the first 'text' element it finds, but that's it. I'm guessing that there's something wrong with the recursion aspect of it, but I really don't know.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.