PHP - Funzione crypt
Sintassi
string crypt ( string $str [, string $salt ] )
Definizione e utilizzo
Viene utilizzato per l'hashing della stringa
Valori restituiti
Restituisce la stringa di hashing
Parametri
Suor n | Parametri e descrizione |
---|---|
1 | str La stringa da sottoporre ad hashing |
Esempio
Prova il seguente esempio
<?php
$input = 'information';
$hash = crypt($input);
?>