Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/17172e04c88b862daf944df77ab7757b to your computer and use it in GitHub Desktop.
Save Farmatique/17172e04c88b862daf944df77ab7757b to your computer and use it in GitHub Desktop.
PHP custom array order
$skill = ["Advanced", "Essentials", "Intermediate"];
$custom_order = [3, 1, 2];
array_multisort($custom_order, $skill);
// after that: $skill becomes ["Essentials", "Intermediate", "Advanced"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment