Skip to content

Instantly share code, notes, and snippets.

@marifuli
Created June 2, 2022 06:41
Show Gist options
  • Save marifuli/8a14c755363454538949addffd22c608 to your computer and use it in GitHub Desktop.
Save marifuli/8a14c755363454538949addffd22c608 to your computer and use it in GitHub Desktop.
PHP array sort by key - Alphatically
$data = [
'India'=>73,
'United States'=>74,
'United Kingdom'=> 75,
'Singapore'=>77,
'Australia'=>87,
'Canada'=>102
];
uksort($data, function($a, $b) {
return strcmp($a, $b);
});
dd($data) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment