Gli ultimi tutorial di sviluppo web
 

PHP md5() Function

<PHP stringa di riferimento

Esempio

Calcolare l'hash MD5 della stringa "Hello" :

<?php
$str = "Hello";
echo md5($str);
?>
Esempio Run »

Definizione e l'utilizzo

Il md5() funzione calcola l'hash MD5 di una stringa.

Il md5() funzione utilizza RSA Data Security, Inc. MD5 Message-Digest Algorithm.

Da RFC 1321 - Il Message-Digest Algorithm MD5: "The MD5 message-digest algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. The MD5 algorithm is intended for digital signature applications, where a large file must be "compressed" in a secure manner before being encrypted with a private (secret) key under a public-key cryptosystem such as RSA."

Per calcolare l'hash MD5 di un file, utilizzare il md5_file() la funzione.


Sintassi

md5( string,raw )

Parametro Descrizione
string Necessario. La stringa da calcolare
raw Opzionale. Specifica esadecimale o formato di uscita binaria:
  • VERO - Raw 16 caratteri formato binario
  • FALSO - Default. numero esadecimale 32 caratteri

Dettagli tecnici

Valore di ritorno: Restituisce l'hash MD5 calcolato in caso di successo, o FALSE in caso di fallimento
Versione PHP: 4+
changelog: Il parametro grezzo è diventato opzionale in PHP 5.0

Altri esempi

esempio 1

Stampa il risultato di md5() :

<?php
$str = "Hello";
echo "The string: ".$str."<br>";
echo "TRUE - Raw 16 character binary format: ".md5($str, TRUE)."<br>";
echo "FALSE - 32 character hex number: ".md5($str)."<br>";
?>
Esempio Run »

esempio 2

Stampa il risultato di md5() e quindi verificare che:

<?php
$str = "Hello";
echo md5($str);

if (md5($str) == "8b1a9953c4611296a827abf8c47804d7")
  {
  echo "<br>Hello world!";
  exit;
  }
?>
Esempio Run »

<PHP stringa di riferimento