function fetch_user_salt($length = SALT_LENGTH) { $salt = ''; for ($i = 0; $i < $length; $i++) { $salt .= chr(rand(33, 126)); } return $salt; }