Skip to content

Instantly share code, notes, and snippets.

@elzup
Created December 31, 2014 15:53
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 elzup/bdcb8876ed619d6ca21d to your computer and use it in GitHub Desktop.
Save elzup/bdcb8876ed619d6ca21d to your computer and use it in GitHub Desktop.
<?php
/* 1 */
$kuji = ['大吉', '小吉', '吉', '凶'];
for ($i = 0; $i < 10000000; $i++) {
echo $kuji[array_rand($kuji)] . PHP_EOL;
}
// /\v(大吉\n){11}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment