Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个现有的 mysql 数据库,其中包含一列加密密码,使用:
crypt($password, "ab");
我想更改所有当前的密码,以便 Laravel 4 能够识别它们并且不会通过身份验证。我该怎么做呢?
您可以创建一个新列,例如 new_password,当用户登录时,首先检查旧加密列的密码,如果匹配:使用 Laravel 对密码进行哈希处理并将它们放入 new_password 列。一段时间后,您可以删除旧密码列。