Skip to content

Instantly share code, notes, and snippets.

@jonasbjork
Created June 29, 2009 13:32
Show Gist options
  • Save jonasbjork/137613 to your computer and use it in GitHub Desktop.
Save jonasbjork/137613 to your computer and use it in GitHub Desktop.
<?php
function mkpasswd($min, $max)
{
$pwd = "";
for($i=0; $i<rand($min,$max); $i++)
{
$num = rand(48,122);
if(($num >48 && $num < 57) || ($num >65 && $num < 90) || ($num > 97 && $num < 122))
{
$pwd .= chr($num);
} else {
$i--;
}
}
return $pwd;
}
echo mkpasswd(8,8)."\n";// prints the password
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment