Created
November 4, 2017 04:55
-
-
Save YurePereira/71ca474511f3246455283c8fb5e5bd3a to your computer and use it in GitHub Desktop.
Creating a password hash with the password_hash function in PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $password = 'myPassword'; | |
| echo password_hash($password, PASSWORD_DEFAULT); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment