php hashed password to normal password code example
Example 1: password hash php
//hash password
$hashed_password = password_hash($password, PASSWORD_DEFAULT);
//verify password
password_verify($password, $hashed_password); // returns true
Example 2: php hash password
$hashed_password = password_hash($password, PASSWORD_DEFAULT);