password_verifyVerifies that a password matches a hash
&reftitle.description;
booleanpassword_verifystringpasswordstringhash
Verifies that the given hash matches the given password.
Note that password_hash returns the algorithm, cost and salt
as part of the returned hash. Therefore, all information that's needed to verify
the hash is included in it. This allows the verify function to verify the hash
without needing separate storage for the salt or algorithm information.
&reftitle.parameters;
password
&password.parameter.password;
hash
&password.parameter.hash;
&reftitle.returnvalues;
Returns &true; if the password and hash match, or &false; otherwise.
&reftitle.examples;
password_verify example
]]>
&example.outputs;
&reftitle.seealso;
password_hashuserland implementation