Dantes
0
Q:

Warning: password_verify() expects parameter 2 to be string, array given in

array(3) { ["algo"]=> int(0) ["algoName"]=> string(7) "unknown" ["options"]=> array(0) { } }
0
<?php

$password = "Hello";
$hash = password_hash($password, PASSWORD_DEFAULT);
echo $hash;

var_dump(password_verify("Hello", $hash));

?>
0

New to Communities?

Join the community