Skip to content

Instantly share code, notes, and snippets.

@nickwebcouk
Created January 12, 2020 16:11
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 nickwebcouk/167063778d3c351d5eadd25d63080de2 to your computer and use it in GitHub Desktop.
Save nickwebcouk/167063778d3c351d5eadd25d63080de2 to your computer and use it in GitHub Desktop.
<?php
$i = 0;
while ($i < 70){
$s = substr(str_shuffle(str_repeat("abcdefghkmnpqrstuvwxyz", 3)), 0, 2);
echo "a" . $s . "\r\n";
$i++;
}
$j = 0;
while ($j < 70){
$t = substr(str_shuffle(str_repeat("abcdefghkmnpqrstuvwxyz", 3)), 0, 2);
echo "b" . $t . "\r\n";
$j++;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment