Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function randomPassword() {
- // Le wild random password appears! - 10 chars[default]!
- $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', '?', '<', '>', '.', ',', ';', '-', '@', '!', '#', '$', '%', '^', '&', '*', '(', ')');
- $pass_size = 10;
- $max_chars = count($chars) - 1;
- srand((double)microtime() * 1000000);
- $rand_str = '';
- for($i = 0; $i < $pass_size; $i++)
- {
- $rand_str .= $chars[rand(0, $max_chars)];
- }
- return $rand_str;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement