Skip to content

Instantly share code, notes, and snippets.

@dinolatoga
Created April 2, 2014 03:18
Show Gist options
  • Save dinolatoga/9927398 to your computer and use it in GitHub Desktop.
Save dinolatoga/9927398 to your computer and use it in GitHub Desktop.
Move Arrays on top or bottom
function move_to_top(&$array, $key) {
$temp = array($key => $array[$key]);
unset($array[$key]);
$array = $temp + $array;
}
function move_to_bottom(&$array, $key) {
$value = $array[$key];
unset($array[$key]);
$array[$key] = $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment