[Solved] hash password and verify it with same variable [duplicate]


password_verify matches your plain password against hashed version of your given password while you’re checking with plain password in both parameter. password_verify works like this:

password_verify($plainPassword, $hashedPassword)

<?php
// See the password_hash() example to see where this came from.
$hash="$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq";

if (password_verify('rasmuslerdorf', $hash)) {
    echo 'Password is valid!';
} else {
    echo 'Invalid password.';
}
?>

8

solved hash password and verify it with same variable [duplicate]