function pass_gen($len) { $pass = ”; srand((float) microtime() * 10000000); for ($i = 0; $i < $len; $i++) { $pass .= chr(rand(33, 126)); } return $pass; }
PHP function to Genrate Random Passwords
This entry was posted in Linux Tricks. Bookmark the permalink.

