我刚刚安装了 php 7.4 并尝试使用我的帐户访问,但出现错误。任何想法 ?
Notice: Core\Hash::needsRehash() Algorithm "" not supported.
我也试过不工作
$algo = 'bcrypt';
$algo = 'argon2id';
功能
public static function needsRehash($hash, $algo = null)
{
if (!isset($algo) || $algo == 'default') {
$algo = PASSWORD_DEFAULT;
} elseif ($algo == 'bcrypt') {
$algo = PASSWORD_BCRYPT;
} elseif ($algo == 'argon2id') {
$algo = PASSWORD_ARGON2ID;
}
if (!is_int($algo)) {
trigger_error('Core\Hash::needsRehash() Algorithm "' . $algo . '" not supported.');
}