Skip to content

Instantly share code, notes, and snippets.

@connerturner
Created October 21, 2014 11:13
Show Gist options
  • Save connerturner/107c74070a52dae102c1 to your computer and use it in GitHub Desktop.
Save connerturner/107c74070a52dae102c1 to your computer and use it in GitHub Desktop.
Random Alphanumerical Generator
$EmailGen = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 1) . substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment