Skip to content

Instantly share code, notes, and snippets.

@msng
Forked from BiMihoujyun/gist:5680544
Last active December 17, 2015 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msng/5689440 to your computer and use it in GitHub Desktop.
Save msng/5689440 to your computer and use it in GitHub Desktop.
<?php
$speakers = ['@voidofglans', '@mkkn_info', '@cloned', '@tanakahisateru', '@sizuhiko', '@shoichi4411', '@77web', '@hhatto'];
$count = 10;
echo "\n";
for ($i = 0; $i < $count; $i++) {
echo "シャッフル!!\n";
shuffle($speakers);
sleep(1);
}
sleep(1);
echo "\nDone!\n\n";
sleep(1);
foreach ($speakers as $order => $name) {
printf("%d: %s\n", $order +1, $name);
};
echo "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment