📅  最后修改于: 2023-12-03 14:45:16.839000             🧑  作者: Mango
在PHP中,hash_equals()函数用来比较两个字符串的哈希值是否相同。
bool hash_equals ( string $known_string , string $user_string )
如果两个字符串的哈希值相同,则返回true。否则,返回false。
$hash1 = hash('sha256', 'myPassword');
$hash2 = hash('sha256', 'myPassword');
if (hash_equals($hash1, $hash2)) {
echo 'Password is correct!';
} else {
echo 'Password is incorrect!';
}