password_verify Verifies that a password matches a hash &reftitle.description; booleanpassword_verify stringpassword stringhash 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; <function>password_verify</function> example ]]> &example.outputs; &reftitle.seealso; password_hash userland implementation