rintaun

Untitled

Oct 27th, 2011
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. function buildSorter($key) {
  2.     return function ($a, $b) use ($key) {
  3.         return strnatcmp($a[$key], $b[$key]);
  4.     };
  5. }
  6. usort($array, buildSorter('sortkey'));
Advertisement
Add Comment
Please, Sign In to add comment