How to Hash Password using PHP's password_hash()
This tutorial tackles on how to hash password using PHP's password_hash() function. password hash(), as per official site description, creates a password hash. This function expects two parameters, the password that you want to hash, then the algorithm that you want to use to hash the password. You can then use password_verify() function to check for the hashed password.
- Read more about How to Hash Password using PHP's password_hash()
- Log in or register to post comments
- 831 views