Created
October 31, 2014 13:17
-
-
Save par6n/eafdf997e7b27729aa21 to your computer and use it in GitHub Desktop.
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 | |
$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