Grouping a 2D array according to its values

Chierneceb

New Member
I've been trying to get some display logic to behave and stay where it belongs and the code has turned into an interesting little problem that'd be nice to make a general solution for. Bear with me, it looks like a wall of text but I've tried to format it nicely with simple example data so it should be understandable after a quick skim through.If for some reason this whole thing is a terrible idea, I need telling before I create an affront to the gods.Starting with data like this, for example:\[code\]$data = http://stackoverflow.com/questions/3917597/array( array('name' => 'Dave', 'age' => '21', 'city' => 'New York', ), array( 'name' => 'Mike', 'age' => '19', 'city' => 'Chicago', ), array( 'name' => 'John', 'age' => '21', 'city' => 'Chicago', ), array( 'name' => 'Matt', 'age' => '19', 'city' => 'New York', ), array( 'name' => 'Luke', 'age' => '21', 'city' => 'New York', ),);\[/code\]With an array of key names by which to group the data, such as\[code\]$groups = array('city', 'age);\[/code\]The data then becomes:\[code\]$data = http://stackoverflow.com/questions/3917597/array('New York' => array( '21' => array( array( 'name' => 'Dave', 'age' => '21', 'city' => 'New York', ), array( 'name' => 'Luke', 'age' => '21', 'city' => 'New York', ), ), '19' => array( array( 'name' => 'Matt', 'age' => '19', 'city' => 'New York', ), ), ), 'Chicago' => array( '19' => array( array( 'name' => 'Mike', 'age' => '19', 'city' => 'Chicago', ), ), '21' => array( array( 'name' => 'John', 'age' => '21', 'city' => 'Chicago', ), ), ),);\[/code\]When I say "general solution", I mean I'm trying to make something that can group things to any nesting level depending on how many of the key names you ask it to group by.It feels like the sort of problem that I could solve instantly if I just knew some random esoteric bit of PHP syntax. Any suggestions? I'll try to update this is if I figure it out in the meantime.
 
Back
Top