(PHP 5 >= 5.5.0)
password_needs_rehash — Checks if the given hash matches the given options
$hash
, integer $algo
[, array $options
] )This function checks to see if the supplied hash implements the algorithm and options provided. If not, it is assumed that the hash needs to be rehashed.
hashХэш, созданный функцией password_hash().
algoКонстанта, обозначающая используемый алгоритм хэширования пароля.
optionsАссоциативный массив с опциями. За документацией по поддерживаемым опциям для каждого алгоритма обратитесь к разделу "Константы алгоритмов хэширования паролей".
Returns TRUE if the hash should be rehashed to match the given
algo and options, or FALSE
otherwise.