Skip to content

Instantly share code, notes, and snippets.

@0xnbk
Created September 13, 2010 04:33
Show Gist options
  • Save 0xnbk/576813 to your computer and use it in GitHub Desktop.
Save 0xnbk/576813 to your computer and use it in GitHub Desktop.
Automatic password creation
<?php
function generatePassword($length=9, $strength=0) {
$vowels = 'aeuy';
$consonants = 'bdghjmnpqrstvz';
if ($strength >= 1) {
$consonants .= 'BDGHJLMNPQRSTVWXZ';
}
if ($strength >= 2) {
$vowels .= "AEUY";
}
if ($strength >= 4) {
$consonants .= '23456789';
}
if ($strength >= 8 ) {
$vowels .= '@#$%';
}
$password = '';
$alt = time() % 2;
for ($i = 0; $i < $length; $i++) {
if ($alt == 1) {
$password .= $consonants[(rand() % strlen($consonants))];
$alt = 0;
} else {
$password .= $vowels[(rand() % strlen($vowels))];
$alt = 1;
}
}
return $password;
}
?>
@0xnbk
Copy link
Author

0xnbk commented Sep 13, 2010

Automatic password creation

Although I personally prefer leaving users to choose their password themselves, a client recently asked me to generate passwords automatically when a new account is created. The following function is flexible: You can choose t

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment