(PHP 7 >= 7.4.0, PHP 8)
password_algos — Get available password hashing algorithm IDs
Returns a complete list of all registered password hashing algorithm IDs as an Array of Strings.
Diese Funktion besitzt keine Parameter.
Returns the available password hashing algorithm IDs.
Beispiel #1 Basic password_algos() usage
<?php
print_r(password_algos());
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array ( [0] => 2y [1] => argon2i [2] => argon2id )