$salt = substr(md5(uniqid(rand(), true)), 0, 10); // 存入資料庫的密碼欄,使用Salt值加上md5雜湊後存回資料庫 $new_password = md5(md5($old_password.$salt));
確定! 回上一頁