Advertisement
Lauda

Untitled

Aug 25th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. public function randomPassword() {
  2. // Le wild random password appears! - 10 chars[default]!
  3.     $chars = array( 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', 'J',  'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', 'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', 'T',  'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', 'Y', 'z', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '?', '<', '>', '.', ',', ';', '-', '@', '!', '#', '$', '%', '^', '&', '*', '(', ')');
  4.     $pass_size = 10;
  5.    
  6.     $max_chars = count($chars) - 1;
  7.     srand((double)microtime() * 1000000);
  8.        
  9.     $rand_str = '';
  10.     for($i = 0; $i < $pass_size; $i++)
  11.     {
  12.         $rand_str .= $chars[rand(0, $max_chars)];
  13.     }
  14.  
  15.         return $rand_str;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement