simple usage for php password_hash
password_hash is used to generate a hash for a password. using this in its simple form can be good for generating a hash from some text like the following code.
PHP
echo password_hash("MyNewPassword123", PASSWORD_DEFAULT);