Skip to content

Instantly share code, notes, and snippets.

@jpswade
Created February 22, 2013 16:58
Show Gist options
  • Save jpswade/5014897 to your computer and use it in GitHub Desktop.
Save jpswade/5014897 to your computer and use it in GitHub Desktop.
<?php
function ashuffle (&$array) {
$shuffle = $array;
shuffle($shuffle);
return $array = array_combine(array_keys($array), $shuffle);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment