password_algosGet available password hashing algorithm IDs Description
array password_algos()
Returns a complete list of all registered password hashing algorithm IDs as an array of strings. ParametersThis function has no parameters. Return ValuesReturns the available password hashing algorithm IDs. ExamplesExample #1 Basic password_algos usage The above example will output something similar to:
Array
(
[0] => 2y
[1] => argon2i
[2] => argon2id
)
|