php expects parameter 1 to be string, array given code example
Example 1: Warning: password_verify() expects parameter 2 to be string, array given in
<?php
$password = "Hello";
$hash = password_hash($password, PASSWORD_DEFAULT);
echo $hash;
var_dump(password_verify("Hello", $hash));
?>
Example 2: Warning: password_verify() expects parameter 2 to be string, array given in
array(3) { ["algo"]=> int(0) ["algoName"]=> string(7) "unknown" ["options"]=> array(0) { } }