Skip to content

Instantly share code, notes, and snippets.

@caferrari
Created July 10, 2014 15:01
Show Gist options
  • Save caferrari/7164fb6bf2e2c10ea609 to your computer and use it in GitHub Desktop.
Save caferrari/7164fb6bf2e2c10ea609 to your computer and use it in GitHub Desktop.
Amigo Secreto
<?php
function amigoSecreto(array $people)
{
shuffle($people);
$temp = array();
do {
array_push($temp, current($people), next($people));
} while(current($people));
array_splice($temp, -1, 1, [reset($temp)]);
return array_chunk($temp, 2);
}
$friends = amigoSecreto(["fulano", "ciclano", "beltrano", "zé"]);
print_r($friends);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment