PHP: Human-readable Random String
Extracto
PHP: Human-readable Random String. GitHub Gist: instantly share code, notes, and snippets.
Contenido
This file contains 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 | |
| /** | |
| * Generates human-readable string. | |
| * | |
| * @param string $length Desired length of random string. | |
| * | |
| * retuen string Random string. | |
| */ | |
| function readable_random_string($length = 6) | |
| { | |
| $string = ''; | |
| $vowels = array("a","e","i","o","u"); | |
| $consonants = array( | |
| 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', | |
| 'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z' | |
| ); | |
| $max = $length / 2; | |
| for ($i = 1; $i <= $max; $i++) | |
| { | |
| $string .= $consonants[rand(0,19)]; | |
| $string .= $vowels[rand(0,4)]; | |
| } | |
| return $string; | |
| } |
Fuente: Gist