Guest User

Untitled

a guest
Jan 16th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function array_sort_by_column(&$arr, $col, $dir = SORT_ASC) {
  2. $sort_col = array();
  3. foreach ($arr as $key=> $row) {
  4. $sort_col[$key] = $row[$col];
  5. }
  6.  
  7. array_multisort($sort_col, $dir, $arr);
  8. }
Add Comment
Please, Sign In to add comment