PHP 8.4.2 Released!

crypt_preferred_method

(PECL xpass >= 1.1.0)

crypt_preferred_methodRenvoie le préfixe de la méthode de hachage préférée

Description

crypt_preferred_method(): ?string

Renvoie le préfixe de la méthode de hachage préférée.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Renvoie une chaîne avec le préfixe, ou null en cas d'erreur.

Exemples

Exemple #1 Un exemple de crypt_preferred_method()

<?php
var_dump
(crypt_preferred_method());
?>

L'exemple ci-dessus va afficher :

string(3) "$y$"

Voir aussi

  • crypt_gensalt() - Compile une chaîne pour utilisation comme argument de sel pour crypt
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top