PHP: Preserve Keys in array_splice
array_splice is a wonderful little function. Unfortunately it doesn't preserve the keys if they're numeric. I've tried many combinations of array_shift, array_slice and even array_reverse and array_pop. Here's my solution that preserves numeric keys.