📅  最后修改于: 2022-03-11 14:54:27.256000             🧑  作者: Mango
// To hash the password, use
password_hash("MySuperSafePassword!", PASSWORD_DEFAULT)
// To compare hash with plain text, use
password_verify("MySuperSafePassword!", $hashed_password)