Skip to content

Instantly share code, notes, and snippets.

@kanazux
Last active August 29, 2015 14:23
Show Gist options
  • Save kanazux/833cfc63d56306ef7d11 to your computer and use it in GitHub Desktop.
Save kanazux/833cfc63d56306ef7d11 to your computer and use it in GitHub Desktop.
<?php
$ord_array = array();
foreach ($sort_array as $key => $row) {
$ord_array[$key] = $row['field'];
}
array_multisort($ord_array, SORT_ASC, $sort_array);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment