encodage php password code example
Example 1: hash a password php
// To hash the password, use
password_hash("MySuperSafePassword!", PASSWORD_DEFAULT)
// To compare hash with plain text, use
password_verify("MySuperSafePassword!", $hashed_password)
Example 2: has password argon2i
<?php
echo password_hash("rasmuslerdorf", PASSWORD_DEFAULT);
// hashed version of password "rasmuslerdorf" will be printed
?>