Skip to content

Instantly share code, notes, and snippets.

@BiMihoujyun
Last active December 17, 2015 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BiMihoujyun/5680544 to your computer and use it in GitHub Desktop.
Save BiMihoujyun/5680544 to your computer and use it in GitHub Desktop.
2013LT
<?php
$speaker = ['@voidofglans', '@mkkn_info', '@cloned', '@tanakahisateru', '@sizuhiko', '@shoichi4411', '@77web', '@hhatto'];
$count = 10;
for($i=1;$i<=$count;$i++):
echo ($i."回目のシャッフル!!\n");
shuffle($speaker);
sleep(1);
endfor;
sleep(1);
echo "Done!\n";
array_walk($speaker, function($v,$k){
printf("%d:%s\n",$k +1,$v);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment