Skip to content

Instantly share code, notes, and snippets.

@jordinebot
Created May 12, 2015 14:52
Show Gist options
  • Save jordinebot/f9840638a5d1d0125283 to your computer and use it in GitHub Desktop.
Save jordinebot/f9840638a5d1d0125283 to your computer and use it in GitHub Desktop.
PHP Array Reorder
function array_reorder( $array, $index_from, $index_to ) {
array_splice(
$array,
$index_to,
count( $array ),
array_merge(
array_splice( $array, $index_from, 1 ),
array_slice( $array, $index_to, count( $array ) )
)
);
return $array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment