I need help with an array problem.
First I have an array like you would receive from a sql query:
$aRows=array(
array("one" => 1, "two" => 2, "three" => 3, "a" => "4", "b" => "lala"),
array("one" => 1, "two" => 2, "three" => 3, "a" => "5", "b" => "lolo"),
array("one" => 1, "two" => 2, "three" => 3, "a" => "6", "b" => "lili")
)
Then I have another array which defines the hierarchy - lets say
$aArray=array("one", "two", "three");
Now I want to build a hierarchical associative array:
$newArray =
array(
"one" => array(
"two" => array(
"three" => array(
array("a" => "4", "b" => "lala"),
array("a" => "5", "b" => "lolo"),
array("a" => "6", "b" => "lili"),
)
)
)
);
Imagine a "grouped by" sql and I want the hierarchical representation.
EDIT: In the sample one,two,three contains the same values, this would not be the case in real life - assume:
select one,two,three,a,b from a_table group by one,two,three;
Of course SQL will group equals values in one,two,three together and this redundant information is useless. But sql can not display hierarchic data, so the fields are redundant.
EDIT 2: Thanks to Waygood the complete solution is:
$aRows=array(
array("one" => 1, "two" => 2, "three" => 3, "a" => "4", "b" => "lala"),
array("one" => 1, "two" => 2, "three" => 4, "a" => "5", "b" => "lolo"),
array("one" => 1, "two" => 2, "three" => 4, "a" => "6", "b" => "lili")
);
$aArray=array("one", "two", "three");
$output=array();
foreach($aRows as $row)
{
$newKey = "";
foreach($aArray as $key) // loop through the hierarchy to get the fields names
{
eval('$exist = array_key_exists(\'' . $row[$key] .
'\', $output' . $newKey . ');');
if (!$exist)
{
$newKey .= "['" . $row[$key] . "']";
eval('$output' . $newKey . '=array();');
}
}
eval('$output' . $newKey . '[]=$row;');
}
echo(var_export($output, true));
First I have an array like you would receive from a sql queryI think that's where you should be looking for your answer. If you store your data in such a way that requires tons of code before you can actually use it something is wrong: either your objects/app design or the way you structured your data – Elias Van Ootegem Aug 14 '12 at 13:11