Skip to content

Instantly share code, notes, and snippets.

@par6n
Created October 31, 2014 13:17
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 par6n/eafdf997e7b27729aa21 to your computer and use it in GitHub Desktop.
Save par6n/eafdf997e7b27729aa21 to your computer and use it in GitHub Desktop.
<?php
$a = array( 'a', 'e', 'i', 'o', 'u' );
$b = array( 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z' );
for( $i = 0; $i <= 20; $i++ ) {
shuffle($a);
shuffle($b);
echo $b[0];
echo $a[0];
echo $b[1];
echo $a[1];
echo $b[10];
echo '<br>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment