Skip to content

Instantly share code, notes, and snippets.

@MohamedBoualleg
Created June 12, 2015 23:44
Show Gist options
  • Save MohamedBoualleg/71eb5bb75703505d5f03 to your computer and use it in GitHub Desktop.
Save MohamedBoualleg/71eb5bb75703505d5f03 to your computer and use it in GitHub Desktop.
php function that generate a random string
function randomStr($lenght){
$str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789';
$str = str_shuffle($str);
while (strlen($str) < $lenght) {
$str = $str.randomStr($lenght - strlen($str));
}
return substr($str, strlen($str) - $lenght);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment