我刚刚将 PHP 从 5.3.6 更新到 5.3.7,并注意到 crypt() 并没有给我相同的结果。
我已经回滚到以前的版本,因为这会阻止 log-n 系统工作。
我想知道我是否可以做任何事情来确保在不同版本之间使用相同的加密系统。
我只是简单地使用它,像这样直接从手册中取出:
// make the password
$newPassword = crypt($_POST['password']);
// check the password (separate script, using the $newPassword just generated)
if (crypt($_POST['password'], $newPassword) == $newPassword) {
}