User Login

Help Community Login:

PHP: Generate Random AlphaNumeric Password / ID

sharkar's picture
From:
Akhaura
sharkar
I use Google ChromeI use SafariWindows User
Relationship Status:
Single & Looking
Joined: 11/03/2012
Posts: 1
Drops: 23
Mood: Accomplished

Nice little PHP function that will generate a completely random password.

/*
* The letter l (lowercase L) and the number 1 have been removed, as they can be mistaken for each other
*/
 
function createRandomPassword() {
 
$chars = "abcdefghijkmnopqrstuvwxyz023456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '' ;
 
while ($i <= 7) {
  $num = rand() % 33;
  $tmp = substr($chars, $num, 1);
  $pass = $pass . $tmp;
  $i++;
}
 
return $pass;
}
 
// Usage
$password = createRandomPassword();
echo "Your random password is: $password";
I Averaged: 2 | 2 votes


Read More ...





Who's New

tanamorgan's picture
dawdsaf awdd dawd's picture
Jtpackage's picture
jiangaa's picture
Bruce Lester's picture
hua fufu's picture
hasen's picture
hasen01's picture
Adrianayng's picture
LaicCdfgen's picture
BruceHar's picture
shbxbchdhdb's picture
pkolij poiuyt pokij's picture
Chunzliu's picture
awddd sadwa asaw's picture
facebook codes exploits tips tricks Phrozen Crew
All contents ©Copyright GeekDrop™ 2009-2025
TOS | Privacy Policy