DEFAULT_ALPHABET
DEFAULT_ALPHABET = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890' :
String containing small letters, capital letters as well as digits.
Provides some useful utilities.
randomString(int $length, string $alphabet) : string
Generates a random string for a given length and a given alphabet.
int | $length | The length for the random string. |
string | $alphabet | A list of allowed characters to choose from as a string. |
The generated random string.