Skip to content

Instantly share code, notes, and snippets.

@Luxato
Last active January 14, 2019 12:55
Show Gist options
  • Save Luxato/7d4c48cb6bff3e7f2fde18ec89e5509a to your computer and use it in GitHub Desktop.
Save Luxato/7d4c48cb6bff3e7f2fde18ec89e5509a to your computer and use it in GitHub Desktop.
Move array element to different position within the array.
<?php
function moveElement(&$array, $a, $b) {
$out = array_splice($array, $a, 1);
array_splice($array, $b, 0, $out);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment