in_array() expects parameter 2 to be array, string given in wrong warning code example

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

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

Example 2: 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));

?>

Tags:

Php Example