![]() |
To sort a multidimensional array
Say, I have this:
$array = array( array('name' => 'b', 'type' => '1'), array('name' => 'f', 'type' => '0'), array('name' => 'c', 'type' => '1') array('name' => 'h', 'type' => '0') ); I want to sort the arrays first by type, then by name. So that it'd be: $array = array( array('name' => 'f', 'type' => '0'), array('name' => 'h', 'type' => '0') array('name' => 'b', 'type' => '1'), array('name' => 'c', 'type' => '1') ); How can I do that? EDIT: OMG, Sometimes I can be really dumb. Why don't I define the order when querying from the database... Duh. |
All times are GMT. The time now is 05:52 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|