Last active
December 17, 2015 22:18
-
-
Save BiMihoujyun/5680544 to your computer and use it in GitHub Desktop.
2013LT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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