Skip to content

Instantly share code, notes, and snippets.

@mrLexx
Created April 29, 2014 23:46
Show Gist options
  • Save mrLexx/11414760 to your computer and use it in GitHub Desktop.
Save mrLexx/11414760 to your computer and use it in GitHub Desktop.
PHP: Rotate array
<?php
$keys = array_keys($arr);
$val = $arr[$keys[0]];
unset($arr[$keys[0]]);
$arr[$keys[0]] = $val;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment